--- embedaddon/lighttpd/tests/mod-compress.conf 2013/10/14 10:32:47 1.1.1.1 +++ embedaddon/lighttpd/tests/mod-compress.conf 2016/11/02 10:35:00 1.1.1.2 @@ -15,7 +15,7 @@ server.breakagelog = env.SRCDIR + "/tmp/lightt server.name = "www.example.org" server.modules = ( - "mod_compress" + "mod_compress", ) ######################## MODULE CONFIG ############################ @@ -28,6 +28,12 @@ mimetype.assign = ( $HTTP["host"] == "cache.example.org" { compress.cache-dir = env.SRCDIR + "/tmp/lighttpd/cache/compress/" } -compress.filetype = ("text/plain", "text/html") +compress.filetype = ( + "text/plain", + "text/html", +) -compress.allowed-encodings = ( "gzip", "deflate" ) +compress.allowed-encodings = ( + "gzip", + "deflate", +)