Apache reverse proxy for IIS

apache-2.2iis-7reverse-proxy

I would like to know what are the options for using Apache's HTTP server as a reverse proxy for IIS7 (serving ASP.NET content under 3.5 .NET Framework).

For JBoss/Tomcat or any other Java Application Server, I will use MOD_JK, but I would like to know what are your experiences with IIS7. What connectors are there available (if any) and what are the pros and cons of each one.

Thanks a lot. Great site!

Best Answer

Just use mod_proxy and configure it as reverse proxy.

Here's the example from the 2.2 reference manual:

ProxyRequests Off

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass /foo http://foo.example.com/bar
ProxyPassReverse /foo http://foo.example.com/bar 
Related Topic