JBoss.orgCommunity Documentation
Make sure that mod_proxy_ajp.so is included in the list of loadable modules. Add the following to your virtual host configuration setting:
ProxyPass / ajp://localhost:8009/
In this example, the app server is located on the same host as the Apache HTTP daemon, and accepts incoming connections on the port 8009 (the default setting for the Tomcat application server). You can find the full list of virtual host configurations here:
<VirtualHost *:80> ServerName Enter your server DNS name here RedirectMatch permanent "^/?$" "/portal/" ProxyRequests Off ProxyPass / ajp://localhost:8009/ </VirtualHost>