Techie:Techie Main/Apache2/Proxy Setup: Difference between revisions

From FFL Wiki
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
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 *>

Revision as of 08:44, 27 May 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