# 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 # The following line makes apache aware of the location of # the /servlets-examples context Alias /servlets-examples "/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 /jsp-examples context Alias /jsp-examples "/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 /servlets-examples/servlet/* ajp13 JkMount /jsp-examples/*.jsp ajp13 # The following line prohibits users from directly accessing WEB-INF AllowOverride None Require all denied deny from all AllowOverride None Require all denied deny from all