logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: example configuration für reverse proxy to IIS ?
Author
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7288
Location: Germany, Next to Hamburg

PostPosted: Wed 15 Feb '06 15:32    Post subject: Reply with quote

Steffen,
do you have an example configuration für reverse proxy? Maybe for this with the IIS in the backround on port 8080.
Back to top
Steffen
Moderator


Joined: 15 Oct 2005
Posts: 3049
Location: Hilversum, NL, EU

PostPosted: Wed 15 Feb '06 15:54    Post subject: Reply with quote

There is an example at:

http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypass


For port IIS on port 8080 on the same box for example:

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so

ProxyRequests Off

ProxyPass /iis/ http://localhost:8080/
ProxyPassReverse /iis/ http://localhost:8080/

When the users type http:www.yourdomain.com/iis/xxx... it is serving IIS on port 8080

Steffen
Back to top


Reply to topic   Topic: example configuration für reverse proxy to IIS ? View previous topic :: View next topic
Post new topic   Forum Index -> Apache