components/apache2-modules/mod_jk/jk-24.conf
author Petr Sumbera <petr.sumbera@oracle.com>
Tue, 21 Oct 2014 02:05:30 -0700
changeset 2163 a23eea6de4af
parent 278 components/apache2-modules/mod_jk/jk.conf@77b380ba9d84
permissions -rw-r--r--
19780770 Apache 2.4 needs some third party modules too 19780705 mod_jk upgrade to version 1.2.40 15812307 SUNBT7194162 upgrade mod_wsgi to version 4.3.0 19617430 mod_wsgi doesn't build if apache 2.4 is installed

LoadModule jk_module libexec/mod_jk.so

<IfModule mod_jk.c>
   JkWorkersFile /etc/apache2/2.4/conf.d/workers.properties
   # Where to put jk shared memory
   # Update this path to match your local state directory or logs directory
   JkShmFile     /var/apache2/2.4/logs/mod_jk.shm
   # Where to put jk logs
   # Update this path to match your logs directory location (put mod_jk.log next to access_log)
   JkLogFile     /var/apache2/2.4/logs/mod_jk.log
   # Set the jk log level [debug/error/info]
   JkLogLevel    info
   # Select the timestamp log format
   JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
   # Send everything for context /examples to worker named worker1 (ajp13)
   JkMount  /examples/* worker1
</IfModule>