Hi Everyone,
Right now we have Apache HTTPD sitting out in from of Apache Tomcat. HTTPD is doing some basic mod_writes inside the virtual host sections (I have 10 sites) and then passes all traffic to Tomcat with the following:
<IfModule mod_proxy.c>
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
</IfModule>
My question is how can I tell ProxyPass to pass through all traffic EXCEPT if it matches the following URL conditions. I am not sure if this is possible. I want certain URL structures to get their data from the HTTPD server or possible a different different HTTPD server and not be forwarded onto Tomcat.
Thank You,
Adam