1 debug.log-request-handling = "enable"
2 debug.log-response-header = "enable"
3 debug.log-request-header = "enable"
5 server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
7 ## bind to port (default: 80)
10 ## bind to localhost (default: all interfaces)
11 server.bind = "localhost"
12 server.errorlog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
13 server.breakagelog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log"
14 server.name = "www.example.org"
15 server.tag = "Apache 1.3.29"
24 ######################## MODULE CONFIG ############################
27 accesslog.filename = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
30 ".html" => "text/html",
37 $HTTP["url"] =~ "^/static/" {
38 server.error-handler-404 = "/404.html"
40 else $HTTP["url"] =~ "^/dynamic/redirect_status/" {
41 server.error-handler = "/404.pl"
43 else $HTTP["url"] =~ "." {
44 server.error-handler-404 = "/404.pl"