[tests] skip mod-secdownload HMAC-SHA1,HMAC-SHA256
[lighttpd.git] / tests / 404-handler.conf
blob2009e6eb554d1bc64aaace6ee7548bcc5be8d87a
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)
8 server.port                 = 2048
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"
18 server.modules = (
19         "mod_cgi",
20         "mod_accesslog",
23 accesslog.filename          = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
25 mimetype.assign             = (
26         ".html" => "text/html",
29 cgi.assign = (
30         ".pl" => env.PERL,
33 $HTTP["url"] =~ "^/static/" {
34         server.error-handler-404 = "/404.html"
36 else $HTTP["url"] =~ "^/dynamic/redirect_status/" {
37         server.error-handler     = "/404.pl"
39 else $HTTP["url"] =~ "." {
40         server.error-handler-404 = "/404.pl"