]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd-mod_staticfile.conf
- don't handle php files as static file
[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 handled via static-file transfer
9 #
10 # .fcgi, .php, .pl are most often handled by mod_fastcgi or mod_cgi
11 static-file.exclude-extensions = ( ".fcgi", ".php", ".pl" )
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.030199 seconds and 4 git commands to generate.