I am working towards configuring our web application (Asp.net on IIS7) in a following scenario:
1) DMZ Server will act as a routing server which will redirect all request to Internal web server which is hosted outside DMZ environment. Is this a viable option if not what is the alternative?
2) Internal web server will connect to the database and sends the response to the DMZ server.
3) People accessing our web application will access it through a direct URL to internal web server withouth going through the DMZ server.
Is the above scenario workable?
How can I implment item 1 above so that DMZ server acts as a routine server only, do I need to implement reverse proxy as mentioned in the following URL:
http://www.iis.net/learn/extensions/url-rewrite-module/reverse-proxy-with-url-rewrite-v2-and-application-request-routing
Any thing that I need to consider while deploying web application to above setup. Crystal report run time will also be installed in order to run reports.
I am new to the DMZ environment so please bear with me. Thanks for your help.