I have apache 2.2 and tomcat 5.5 running on a Windows XP machine.
Which tomcat/apache connector is the easiest to set up and is well documented?
I have apache 2.2 and tomcat 5.5 running on a Windows XP machine.
Which tomcat/apache connector is the easiest to set up and is well documented?
mod_jk
, or simply just usemod_proxy
even though it's not really a Tomcat connector.mod_proxy_ajp
would be the easiest to use if you are using Apache 2.2. It is part of the Apache distribution so you don't need to install any additional software.In your
httpd.conf
you need to make sure thatmod_proxy
andmod_proxy_ajp
are loaded:Then you can use the ProxyPass and ProxyPassReverse directives as follows:
You should consult the Apache 2.2 documentation for a full catalog of the directives available.