Techie:Techie Main/Apache2/Proxy Setup: Difference between revisions
Jump to navigation
Jump to search
Created page with 'Install mod_proxy and see the following example additions httpd.conf to proxy through to tomcat running on port 8081 <Proxy *> Order deny,allow Allow from localhost </…' |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
Install mod_proxy and see the following example additions httpd.conf to proxy through to tomcat running on port 8081 | [[../Installing_Modules | Install mod_proxy]] and see the following example additions httpd.conf to proxy through to tomcat running on port 8081 | ||
<Proxy *> | <Proxy *> | ||
Line 7: | Line 7: | ||
ProxyPass /fantacyweb http://localhost:8081/fantacyweb | ProxyPass /fantacyweb http://localhost:8081/fantacyweb | ||
ProxyPassReverse /fantacyweb http://localhost:8081/fantacyweb | ProxyPassReverse /fantacyweb http://localhost:8081/fantacyweb | ||
Also see [[../../Java/Tomcat/Proxy_through_to_Apache]] |
Latest revision as of 10:58, 9 June 2010
Install mod_proxy and see the following example additions httpd.conf to proxy through to tomcat running on port 8081
<Proxy *> Order deny,allow Allow from localhost </Proxy> ProxyPass /fantacyweb http://localhost:8081/fantacyweb ProxyPassReverse /fantacyweb http://localhost:8081/fantacyweb
Also see Techie:Techie Main/Java/Tomcat/Proxy_through_to_Apache