1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# Customize these two values for your Apache2 install
ServerRoot "/Users/brianm/.opt/httpd-2.2.3-worker-for-lua"
DocumentRoot "/Users/brianm/src/wombat/test/htdocs"
# Customize this value to point to the top of mod_wombat's test dir
LuaRoot /Users/brianm/src/wombat/test
Listen 8000
LoadModule lua_module modules/mod_lua.so
AddHandler lua-script .lua
#LuaConfig httpd_config.lua configure
LuaMapHandler /basic /Users/brianm/src/wombat/test/htdocs/test.lua
LuaMapHandler /filter/simple /Users/brianm/src/wombat/test/htdocs/filters.lua handle_simple
LuaMapHandler ^/(\w+)_(\w+)$ /Users/brianm/src/wombat/test/htdocs/$1.lua handle_$2
LuaHookTranslateName htdocs/hooks.lua translate_name
LuaHookTranslateName htdocs/hooks.lua translate_name2
LuaHookFixups htdocs/hooks.lua fixups_test
LuaPackagePath lib/?.lua
# stat | forever | never
LuaCodeCache stat
ErrorLog logs/error_log
LogLevel debug
|