[tests] skip mod-secdownload HMAC-SHA1,HMAC-SHA256
[lighttpd.git] / tests / lowercase.conf
blobb8f2ec7d475061be90d84f80b0ab79c202b6f600
1 server.document-root         = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
3 ## bind to port (default: 80)
4 server.port                 = 2048
6 ## bind to localhost (default: all interfaces)
7 server.bind                = "localhost"
8 server.errorlog            = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
9 server.breakagelog         = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log"
11 server.force-lowercase-filenames = "enable"
13 server.modules = (
14         "mod_access",
15         "mod_auth",
16         "mod_authn_file",
19 mimetype.assign = (
20         ".jpg"  => "image/jpeg",
23 auth.backend = "plain"
24 auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
26 $HTTP["host"] == "lowercase-auth" {
27         auth.require = (
28                 "/image.jpg" => (
29                         "method"  => "digest",
30                         "realm"   => "download archiv",
31                         "require" => "valid-user",
32                 ),
33         )
36 $HTTP["host"] == "lowercase-deny" {
37         url.access-deny = (
38                 ".jpg",
39         )
42 $HTTP["host"] == "lowercase-exclude" {
43         static-file.exclude-extensions = (
44                 ".jpg",
45         )