>Thanks for the replies!
>Just to be very sure, if I try mod_jk.dll then I'll have to
>change this line
>in /conf/tomcat-apache.conf
>LoadModule jserv_module modules/ApacheModuleJServ.dll
>to
>LoadModule jserv_module modules/mod_jk.dll
>and all of this will stil work with version 3.2.2?
>
mod_jk use different Apache directive than mod_jserv and
use also another file, workers.properties....
Take a look at :
http://jakarta.apache.org/tomcat/tomcat-3.2-doc/mod_jk-howto.html
==> httpd.conf
LoadModule jk_module libexec/mod_jk.so
AddModule mod_jk.c
JkWorkersFile /usr/local/jakarta-tomcat/conf/workers.properties
JkLogFile /usr/local/apache/logs/mod_jk.log
JkLogLevel error
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
JkMount /examples/*.jsp myworker
JkMount /examples/servlet/* myworker
==> workers.properties
worker.list=myworker
worker.myworker.port=8009
worker.myworker.host=localhost
worker.myworker.type=ajp13
worker.myworker.lbfactor=1
worker.myworker.cachesize=16
Regards