]> git.pld-linux.org Git - packages/apache-mod_jk.git/blobdiff - apache-mod_jk.conf
- migrate to apache 2.4
[packages/apache-mod_jk.git] / apache-mod_jk.conf
index a211550a2fb8a3dcb32e2fe5116ea5a217d72252..91c466cb38353d8e1e5e51316b370ffa74c1d423 100644 (file)
@@ -1,14 +1,22 @@
-# $Id$
 LoadModule     jk_module       modules/mod_jk.so
 
+# See conf/httpd-jk.conf for more complete directives
 <IfModule mod_jk.c>
     JkLogFile       /var/log/httpd/mod_jk.log
-    JkShmFile       /var/run/httpd/jk-runtime-status
+    JkShmFile       /var/run/httpd/mod_jk.shm
+
+# JK log level (trace,debug,info,warn,error)
     JkLogLevel      warn
 
 ### Uncomment following line to enable mod_jk
 #    JkWorkersFile  /etc/httpd/workers.properties
 
+# If you want to put all mounts into an external file
+# that gets reloaded automatically after changes
+# (with a default latency of 1 minute),
+# you can define the name of the file here.
+#    JkMountFile     /etc/httpd/uriworkermap.properties
+
 ### Forward these URIs to tomcat
 #    JkMount /*.jsp tomcat
 #    JkMount /servlet/* tomcat
@@ -16,13 +24,13 @@ LoadModule  jk_module       modules/mod_jk.so
 
 ### Don't forget to set ACLs for mod_jk URIs
 #    <Location /examples/>
-#      Allow from all
+#      Require all granted
 #    </Location>
 
 ### Access tomcat manager (tomcat-webapp-manager rpm package)
 #    JkMount /manager/html tomcat
 #    <Location /manager/html>
 #      SSLRequireSSL
-#      Allow from all
+#      Require all granted
 #    </Location>
 </IfModule>
This page took 0.06569 seconds and 4 git commands to generate.