From 59f5fd20e2f59ae186d5a461aef7782dd55e4e7b Mon Sep 17 00:00:00 2001 From: MCApollo <34170230+MCApollo@users.noreply.github.com> Date: Mon, 29 Apr 2019 17:53:00 +0000 Subject: Updated lighttpd. --- .../doc/config/conf.d/compress.conf | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/compress.conf (limited to 'data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/compress.conf') diff --git a/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/compress.conf b/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/compress.conf new file mode 100644 index 000000000..e0667b62a --- /dev/null +++ b/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/compress.conf @@ -0,0 +1,31 @@ +####################################################################### +## +## Output Compression +## -------------------- +## +## See https://redmine.lighttpd.net/projects/lighttpd/wiki/docs_modcompress +## +server.modules += ( "mod_compress" ) + +## +## where should the compressed files be cached? +## see the base config for the declaration of the variable. +## +## This directory should be changed per vhost otherwise you can +## run into trouble with overlapping filenames +## +compress.cache-dir = cache_dir + "/compress" + +## +## FileTypes to compress. +## +compress.filetype = ("text/plain", "text/html") + +## +## Maximum filesize that will be compressed. +## Default is 0, which means unlimited file size. +## +#compress.max-filesize = 0 + +## +####################################################################### -- cgit v1.2.3