Andreas Schneider wrote:
Hi,

I am trying to use my tomcat 6 over Apache 2.2. I have deployed a war called 
sw-builder.war into the webapps folder of the tomcat instance.

Since you are using Apache 2.2 I'd use mod_proxy_ajp. Configuration is as simple as:

1. Make sure AJP connector is enabled (eg on port 8009) of Tomcat

2. Add the following to httpd.conf

ProxyRequests Off

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass /sw-builder ajp://127.0.0.1:8009/sw-builder
ProxyPassReverse /sw-builder ajp://127.0.0.1:8009/sw-builder

Mark


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to