You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wiki-changes@httpd.apache.org by Apache Wiki <wi...@apache.org> on 2007/07/04 23:08:34 UTC

[Httpd Wiki] Update of "ScratchPad/ReverseProxyExamples" by pctony

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

------------------------------------------------------------------------------
- == Sample Reverse Proxy Configurations ==
+ deleted
  
- 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 ===
- {{{
- 
- }}}
-