What configuration changes needed on tcServer to work with Apache Web server
- by aos37
Hi,
I have Apache Webserver 2.2.17 and tcServer-6.0.20 and I want to dispatch requests from apache to tcserver.
I am using mod_jk.so and I have the following in httpd.conf
LoadModule jk_module modules/mod_jk.so
<IfModule jk_module>
JkWorkersFile /x/y/apache2/conf/workers.properties
JkLogFile /x/y/apache2/logs/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
JkMount /xyz/* ww
</IfModule>
My workers.properties file under /x/y/apache2/conf/workers.properties has
worker.list= ww
worker.ww.type=ajp13
worker.ww.port=12000
worker.ww.host=www.abc.com
I'm new to tcServer (and tomcat) and I don't know what changes I have to make in server.xml on tcServer to get this to work with Apache.
Any help would be appreciated.