]> git.pld-linux.org Git - packages/apache-mod_jk.git/blob - apache-mod_jk.conf
- migrate to apache 2.4
[packages/apache-mod_jk.git] / apache-mod_jk.conf
1 LoadModule      jk_module       modules/mod_jk.so
2
3 # See conf/httpd-jk.conf for more complete directives
4 <IfModule mod_jk.c>
5     JkLogFile       /var/log/httpd/mod_jk.log
6     JkShmFile       /var/run/httpd/mod_jk.shm
7
8 # JK log level (trace,debug,info,warn,error)
9     JkLogLevel      warn
10
11 ### Uncomment following line to enable mod_jk
12 #    JkWorkersFile  /etc/httpd/workers.properties
13
14 # If you want to put all mounts into an external file
15 # that gets reloaded automatically after changes
16 # (with a default latency of 1 minute),
17 # you can define the name of the file here.
18 #    JkMountFile     /etc/httpd/uriworkermap.properties
19
20 ### Forward these URIs to tomcat
21 #    JkMount /*.jsp tomcat
22 #    JkMount /servlet/* tomcat
23 #    JkMount /examples/* tomcat
24
25 ### Don't forget to set ACLs for mod_jk URIs
26 #    <Location /examples/>
27 #      Require all granted
28 #    </Location>
29
30 ### Access tomcat manager (tomcat-webapp-manager rpm package)
31 #    JkMount /manager/html tomcat
32 #    <Location /manager/html>
33 #      SSLRequireSSL
34 #      Require all granted
35 #    </Location>
36 </IfModule>
This page took 0.086824 seconds and 3 git commands to generate.