You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lighttpd1.4/tests/mod-deflate.conf

36 lines
942 B
Plaintext

debug.log-request-handling = "enable"
debug.log-response-header = "disable"
debug.log-request-header = "disable"
server.systemd-socket-activation = "enable"
server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
server.pid-file = env.SRCDIR + "/tmp/lighttpd/lighttpd.pid"
server.errorlog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
server.breakagelog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log"
server.name = "www.example.org"
server.compat-module-load = "disable"
server.modules = (
"mod_deflate",
"mod_staticfile",
)
mimetype.assign = (
".html" => "text/html",
".txt" => "text/plain; charset=utf-8",
)
$HTTP["host"] == "cache.example.org" {
deflate.cache-dir = env.SRCDIR + "/tmp/lighttpd/cache/compress/"
}
deflate.mimetypes = (
"text/plain",
"text/html",
)
deflate.allowed-encodings = (
"gzip",
"deflate",
)