Sophie

Sophie

distrib > Mageia > 3 > i586 > by-pkgid > 3f5500fdf5b08ef7303c45fcf6b45fa4 > files > 1

lighttpd-mod_compress-1.4.32-3.7.mga3.i586.rpm

#######################################################################
##
##  Output Compression 
## --------------------
##
## see http://www.lighttpd.net/documentation/compress.html
##
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

##
#######################################################################