summaryrefslogtreecommitdiff
path: root/apache-mod_jk.conf
blob: 91c466cb38353d8e1e5e51316b370ffa74c1d423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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/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
#    JkMount /examples/* tomcat

### Don't forget to set ACLs for mod_jk URIs
#    <Location /examples/>
#      Require all granted
#    </Location>

### Access tomcat manager (tomcat-webapp-manager rpm package)
#    JkMount /manager/html tomcat
#    <Location /manager/html>
#      SSLRequireSSL
#      Require all granted
#    </Location>
</IfModule>