lighttpd1.4/tests/lowercase.conf

49 lines
1.0 KiB
Plaintext
Raw Normal View History

server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
## bind to port (default: 80)
server.port = 2048
## bind to localhost (default: all interfaces)
server.bind = "localhost"
server.errorlog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
server.breakagelog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log"
server.force-lowercase-filenames = "enable"
server.compat-module-load = "disable"
server.modules = (
"mod_access",
"mod_auth",
"mod_authn_file",
"mod_staticfile",
)
mimetype.assign = (
".jpg" => "image/jpeg",
)
auth.backend = "plain"
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
$HTTP["host"] == "lowercase-auth" {
auth.require = (
"/image.jpg" => (
"method" => "digest",
"realm" => "download archiv",
"require" => "valid-user",
),
)
}
$HTTP["host"] == "lowercase-deny" {
url.access-deny = (
".jpg",
)
}
$HTTP["host"] == "lowercase-exclude" {
static-file.exclude-extensions = (
".jpg",
)
}