Apache

From John Freier
Revision as of 15:09, 1 June 2011 by Jfreier (Talk | contribs) (Created page with ''''Virtual Host ProxyPass''' This will pass any http request along. It helps when you want to pass a connection to another server, example apache -> tomcat:8080. <VirtualHost …')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Virtual Host ProxyPass This will pass any http request along. It helps when you want to pass a connection to another server, example apache -> tomcat:8080.

<VirtualHost *:80>
        ProxyPreserveHost On
        ProxyPass / http://localhost:8080/
        ProxyPassReverse / http://localhost:8080/
        ServerName www.winowannabes.com
        ServerAlias winowannabes.com
</VirtualHost>