mod_proxy_ajpit will be easiest to use if you are using Apache 2.2. This is part of the Apache distribution, so you do not need to install any additional software.
In yours httpd.confyou need to make sure that you are uploaded mod_proxyand mod_proxy_ajp:
LoadModule proxy_module modules / mod_proxy.so
LoadModule proxy_ajp_module modules / mod_proxy_ajp.so
Then you can use ProxyPass and ProxyPassReverse :
ProxyPass /portal ajp://localhost:8009/portal
ProxyPassReverse /portal ajp://localhost:8009/portal
Apache 2.2 .