Skip to content

Instantly share code, notes, and snippets.

@craigplummer
Created May 6, 2012 20:25
Show Gist options
  • Save craigplummer/2624217 to your computer and use it in GitHub Desktop.
Save craigplummer/2624217 to your computer and use it in GitHub Desktop.
Apache config required to setup Coldfusion 10 under MAMP Pro
# Load mod_jk module
LoadModule jk_module "/Applications/ColdFusion10/config/wsconfig/1/mod_jk.so"
# Where to find workers.properties
JkWorkersFile "/Applications/ColdFusion10/config/wsconfig/1/workers.properties"
JkMountFile "/Applications/ColdFusion10/config/wsconfig/1/uriworkermap.properties"
# Where to put jk logs
JkLogFile "/Applications/ColdFusion10/config/wsconfig/1/mod_jk.log"
# Where to put jk shared memory
JkShmFile "/Applications/ColdFusion10/config/wsconfig/1/jk_shm"
# Set the jk log level [debug/error/info]
JkLogLevel info
# Select the timestamp log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
AddHandler jakarta-servlet .cfm .cfml .cfc .cfr .cfswf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment