[tests] skip mod-secdownload HMAC-SHA1,HMAC-SHA256
[lighttpd.git] / tests / var-include.conf
blobe134c790ce82080f1da7d45b040a7634c8a4feee
2 debug.log-request-handling = "enable"
3 #debug.log-condition-handling = "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_redirect",
20         "mod_accesslog",
23 accesslog.filename = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
25 mimetype.assign  = (
26         ".html" => "text/html",
29 url.redirect = (
30         "" => "/default",
33 $HTTP["host"] == "www.example.org" {
34         server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
35         server.name = "www.example.org"
36         url.redirect = (
37                 "" => "/redirect",
38         )
41 $HTTP["host"] == "test.example.org" {
42         server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
43         server.name = "test.example.org"
44         var.myvar = "good"
45         var.one = 1
46         include "var-include-sub.conf"