Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change notification.
The following page has been changed by pctony: http://wiki.apache.org/httpd/ScratchPad/ReverseProxyExamples The comment on the change is: first draft, not yet completed New page: == Sample Reverse Proxy Configurations == Using a reverse proxy can help you achieve several things. * A collection of internally hosted sites, under one namespace. * The publishing of sites hosted on serveral different servers using one public facing server. * A single point of connectivity with the public network. === Example #1 === {{{ <Virtualhost *:80> ... Servername admin.example.com ProxyPass / http://localhost:8080/ ProxyPreserveHost On ProxyPassReverse / http://localhost:8080/ ... </Virtualhost> }}} ''This example will reverse proxy a connection to a local server web site, on port 8080. It will also preserve the orignal hostname, in this case admin.example.com'' === Example #2 === {{{ }}}
