components/apache2-modules/mod_jk/jk.conf
author Jiri Kukacka <jiri.kukacka@oracle.com>
Thu, 16 Jan 2014 06:52:45 -0800
branchs11u1-sru
changeset 2935 cd48674f5a76
parent 278 77b380ba9d84
permissions -rw-r--r--
15949286 update tcsh to 6.18.01 15825527 SUNBT7206801 tcsh tries to autocorrect commands that are correct 16072367 New tcsh changes the value of $HOSTTYPE from i86pc to sun386i


<IfDefine 64bit>
LoadModule jk_module libexec/64/mod_jk.so
</IfDefine>
<IfDefine !64bit>
LoadModule jk_module libexec/mod_jk.so
</IfDefine>

<IfModule mod_jk.c>
   JkWorkersFile /etc/apache2/2.2/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.2/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.2/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>