lighttpd: update to lighttpd 1.4.61 release hash
[feed/packages.git] / net / lighttpd / files / lighttpd.conf
1 server.document-root = "/www"
2 server.upload-dirs = ( "/tmp" )
3 server.errorlog = "/var/log/lighttpd/error.log"
4 server.pid-file = "/var/run/lighttpd.pid"
5 server.username = "http"
6 server.groupname = "www-data"
7
8 index-file.names = ( "index.php", "index.html",
9 "index.htm", "default.htm",
10 )
11
12 static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
13
14 ### Features
15 #https://redmine.lighttpd.net/projects/lighttpd/wiki/Server_feature-flagsDetails
16 server.feature-flags += ("server.graceful-shutdown-timeout" => 5)
17 #server.feature-flags += ("server.graceful-restart-bg" => "enable")
18
19 ### Options that are useful but not always necessary:
20 #server.chroot = "/"
21 #server.port = 81
22 #server.bind = "localhost"
23 #server.tag = "lighttpd"
24 #server.errorlog-use-syslog = "enable"
25 #server.network-backend = "writev"
26
27 ### Use IPv6 if available
28 #include_shell "/usr/share/lighttpd/use-ipv6.pl"
29
30 #dir-listing.encoding = "utf-8"
31 #dir-listing.activate = "enable"
32
33 include "/etc/lighttpd/mime.conf"
34 include "/etc/lighttpd/conf.d/*.conf"