# Load mod_jk module # Update this path to match your modules location LoadModule jk_module modules/mod_jk.so # Declare the module for (remove this line on Apache 2.x) # AddModule mod_jk.c # Where to find workers.properties # Update this path to match your conf directory location (put workers.properties next to httpd.conf) JkWorkersFile "%MG_WEB_APACHE%/conf/workers.properties" # Where to put jk logs # Update this path to match your logs directory location (put mod_jk.log next to access_log) JkLogFile "%MG_WEB_APACHE%/logs/mod_jk.log" # Set the jk log level [debug/error/info] JkLogLevel info # Select the log format JkLogStampFormat "[%a %b %d %H:%M:%S %Y] " # JkOptions indicate to send SSL KEY SIZE, JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories # JkRequestLogFormat set the request format JkRequestLogFormat "%w %V %T" # Send everything for context /examples to worker named worker1 (ajp13) JkMount /%MG_VIRTUAL_DIR%/mapviewerjava/* worker1 # Required for bundled java samples to work JkMount /%MG_VIRTUAL_DIR%/javaviewersample/* worker1 JkMount /%MG_VIRTUAL_DIR%/javasamples/* worker1