# simple configuration for apache (for AJP connector, modul mod_jk.so) JkWorkersFile /etc/tomcat/workers.properties JkLogFile /var/log/tomcat/mod_jk.log # Log level to be used by mod_jk JkLogLevel error # JkLogLevel debug # The following line makes apache aware of the location of # the /examples/servlets context # # WARNING! Contrary to the normal freedom in the choice of apache2 Aliases # it is mandatory here that the Alias is formed from the exact # tomcat path with the tomcat DocumentRoot prefix stripped! # Alias /examples/servlets "/srv/tomcat/webapps/examples/servlets" Options Indexes FollowSymLinks Require all granted allow from all # The following line makes apache aware of the location of # the /examples/jsp context Alias /examples/jsp "/srv/tomcat/webapps/examples/jsp" Options Indexes FollowSymLinks Require all granted allow from all # The following line mounts all JSP files and the /servlet/ uri to tomcat JkMount /examples/servlets/servlet/* ajp13 JkMount /examples/jsp/*.jsp ajp13 # The following line prohibits users from directly accessing WEB-INF Require all denied deny from all Require all denied deny from all