1#######################################################################
2##
3##  Output Compression
4## --------------------
5##
6## see http://www.lighttpd.net/documentation/compress.html
7##
8server.modules += ( "mod_compress" )
9
10##
11## where should the compressed files be cached?
12## see the base config for the declaration of the variable.
13##
14## This directory should be changed per vhost otherwise you can
15## run into trouble with overlapping filenames
16##
17compress.cache-dir         = cache_dir + "/compress"
18
19##
20## FileTypes to compress.
21##
22compress.filetype          = ("text/plain", "text/html")
23
24##
25## Maximum filesize that will be compressed.
26## Default is 0, which means unlimited file size.
27##
28#compress.max-filesize = 0
29
30##
31#######################################################################
32