mod_webapp is ONLY for Tomcat 4.0.
For 3.2 and 3.3 (or 4.0), use mod_jk instead
# httpd.conf
AddModule mod_jk.c
JkWorkersFile /etc/httpd/conf/workers.properties
JkLogFile /var/log/httpd/mod_jk.log
JkLogLevel debug
Alias /examples "/var/tomcat/webapps/examples"
<Directory "/var/tomcat/webapps/examples">
Options Indexes FollowSymLinks MultiViews
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>
JkMount /examples/servlet/* ajp13
JkMount /examples/*.jsp ajp13
<Location "/examples/WEB-INF/">
AllowOverride None
deny from all
</Location>
Alias /admin "/var/tomcat/webapps/admin"
<Directory "/var/tomcat/webapps/admin">
Options FollowSymLinks
</Directory>
JkMount /admin/servlet/* ajp13
JkMount /admin/*.jsp ajp13
<Location "/admin/WEB-INF/">
AllowOverride None
deny from all
</Location>
### workers.properties
worker.list=ajp13
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
worker.ajp13.lbfactor=1
worker.ajp13.cachesize=16
-
Henri Gomez ___[_]____
EMAIL : [EMAIL PROTECTED] (. .)
PGP KEY : 697ECEDD ...oOOo..(_)..oOOo...
PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6
>-----Original Message-----
>From: zze-DELARUE Franck stagiaire FTRD/DMI/LAN
>[mailto:[EMAIL PROTECTED]]
>Sent: Thursday, August 23, 2001 6:07 PM
>To: '[EMAIL PROTECTED]'
>Subject: link tomcat <-> apache
>
>
>hi everyone,
>i've installed tomcat 3.2.2 on linux with apache. I try to
>make a connection
>between apache and tomcat but it doesn't work at all. I've copied the
>modules mod_jserv, mod_jk, mod_webapp in the right directory
>and changed the
>http.conf file to use these modules like this :
>
> LoadModule webapp_module libexec/mod_webapp.so
> AddModule mod_webapp.c
> Include conf/mod_jk.conf
> Include conf/tomcat-apache.conf
>
>There is maybe something else to do or to add to the httpd.conf like :
> WebAppConnection conn warp localhost:8007
> WebAppDeploy examples conn /examples
> WebAppInfo /webapp-info
>
>but this does not work ...
>
>Thanks in advance.
>