lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
821 B
31 lines
821 B
####################################################################### |
|
## |
|
## 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 |
|
|
|
## |
|
#######################################################################
|
|
|