# Akadia AG, Arvenweg 4, CH-3604 Thun                            mod_jk.conf
# --------------------------------------------------------------------------
# File:        mod_jk.conf
#
# Autor:       Martin Zahn, 06.08.2002
#
# Purpose:     Configuration file for Apache/Tomcat
#
# Location:    $TOMCAT_HOME/conf
#
# Certified:   RedHat Linux 7.2 / Apache 1.3.22 / Tomcat 4.1.10 / JDK-1.4
#
# Note:        This file should be appended or included into your httpd.conf
# --------------------------------------------------------------------------
#
# The following line instructs Apache to load the jk module
#

LoadModule jk_module /usr/lib/apache/mod_jk.so
AddModule mod_jk.c
#
# Configure the jk module
#

JkWorkersFile /usr/local/tomcat/conf/workers.properties
JkLogFile /var/log/httpd/mod_jk.log
#
# Log Level: May be debug, info, error, or emerg.
# If not set, defaults to no log
#

JkLogLevel error
#
# Root context mounts for Tomcat
#

JkMount /*.jsp ajp13
JkMount /servlet/* ajp13
#
# Examples delivered with Tomcat, mapped in server.xml
# Use this only for Development and Testing
#
# Alias /examples "/usr/local/tomcat/webapps/examples"
# JkMount /examples/servlet/* ajp13
# JkMount /examples/*.jsp ajp13
#
# Akadia's Web Application Root Context, mapped in server.xml
#

JkMount /jsp/*.jsp ajp13
JkMount /jsp/servlet/* ajp13