libsoup3: update to 3.6.0; fix GTK2/3 app startup
[oi-userland.git] / components / web / apache2-modules / mod_jk / jk.conf
blob85252bd4b30a8523c5f7e91bf7fc48f4379244dd
1 LoadModule jk_module libexec/mod_jk.so
3 <IfModule mod_jk.c>
4    JkWorkersFile /etc/apache2/2.4/conf.d/workers.properties
5    # Where to put jk shared memory
6    # Update this path to match your local state directory or logs directory
7    JkShmFile     /var/apache2/2.4/logs/mod_jk.shm
8    # Where to put jk logs
9    # Update this path to match your logs directory location (put mod_jk.log next to access_log)
10    JkLogFile     /var/apache2/2.4/logs/mod_jk.log
11    # Set the jk log level [debug/error/info]
12    JkLogLevel    info
13    # Select the timestamp log format
14    JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
15    # Send everything for context /examples to worker named worker1 (ajp13)
16    JkMount  /examples/* worker1
17 </IfModule>