]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd-mod_staticfile.conf
- add static-file.etags
[packages/lighttpd.git] / lighttpd-mod_staticfile.conf
1 # staticfile module.
2 #
3
4 server.modules += (
5         "mod_staticfile"
6 )
7
8 # which extensions should not be handle via static-file transfer
9 #
10 # .pl, .fcgi are most often handled by mod_fastcgi or mod_cgi
11 static-file.exclude-extensions = ( ".pl", ".fcgi" )
12
13 # see http://trac.lighttpd.net/trac/ticket/1216
14 etag.use-inode = "enable"
15 etag.use-mtime = "enable"
16 etag.use-size = "enable"
17
18 # ETag header generation (default: enabled)
19 static-file.etags = "enable"
This page took 0.033866 seconds and 4 git commands to generate.