• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

help setting up apache proxy..

itachi

Senior member
i'm having a bit of trouble on setting up apache to proxy requests for a certain path to a different server.. what i'm trying to do is have apache form a proxy when http://domain.name/path is requested, to a tomcat server residing at http://local.ip:8080.. the tomcat server is blocked by a firewall so all communication has to be done through the apache server.

i looked over the documentation and added the following to httpd.conf
LoadModule proxy_module modules/mod_proxy.so
AddModule mod_proxy.c
.....
ProxyPass /path http://local.ip:8080
ProxyPassReverse /path http://local.ip:8080

and the following to server.xml..
<Connector port=8080 proxyName="domain.name" proxyPort="80" ....>
 
I did something like this once, but can't remember all of the details. I think I had to make a virtual host for it and reverse proxy that instead.
 
Back
Top