diff options
author | mh <mh@immerda.ch> | 2010-10-16 17:30:18 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2010-10-16 17:30:18 +0200 |
commit | b8a95ea0776c86e8f68bb8986ef065f7d426052c (patch) | |
tree | 61a3e95b75044eae11fa180721f7534e239c30d9 | |
parent | 6138c73f0cbaddc0049f217f3f84cf4dcc3d2029 (diff) | |
download | puppet-lighttpd-b8a95ea0776c86e8f68bb8986ef065f7d426052c.tar.gz puppet-lighttpd-b8a95ea0776c86e8f68bb8986ef065f7d426052c.tar.bz2 |
add compress by default
-rw-r--r-- | files/lighttpd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/lighttpd.conf b/files/lighttpd.conf index c84faa8..d135763 100644 --- a/files/lighttpd.conf +++ b/files/lighttpd.conf @@ -26,7 +26,7 @@ server.modules = ( # "mod_evhost", # "mod_userdir", # "mod_cgi", -# "mod_compress", + "mod_compress", # "mod_ssi", # "mod_usertrack", # "mod_expire", @@ -195,8 +195,8 @@ server.username = "lighttpd" server.groupname = "lighttpd" #### compress module -#compress.cache-dir = "/var/cache/lighttpd/compress/" -#compress.filetype = ("text/plain", "text/html") +compress.cache-dir = "/var/cache/lighttpd/compress/" +compress.filetype = ("text/plain", "text/html") #### proxy module ## read proxy.txt for more info |