I want to put an Apache web server in front of an IIS web server in order to route incoming http requests from Apache to IIS for processing (and send the responses back to Apache).
What is the best way to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
We’ve used mod_proxy in Apache to create a reverse proxy for incoming web requests. This allowed us to keep an old URL around that some customers were using and couldn’t get away from. It presents some challenges when posting large amounts of data, but this should do what you want.
http://httpd.apache.org/docs/2.1/mod/mod_proxy.html