First Commit
[librecmc/package-feed.git] / net / lighttpd / files / lighttpd.conf
1 server.modules = (
2 )
3
4 server.document-root        = "/www"
5 server.upload-dirs          = ( "/tmp" )
6 server.errorlog             = "/var/log/lighttpd/error.log"
7 server.pid-file             = "/var/run/lighttpd.pid"
8 server.username             = "http"
9 server.groupname            = "www-data"
10
11 index-file.names            = ( "index.php", "index.html",
12                                 "index.htm", "default.htm",
13                                 "index.lighttpd.html" )
14
15 static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
16
17 ### Options that are useful but not always necessary:
18 #server.chroot               = "/"
19 #server.port                 = 81
20 #server.bind                 = "localhost"
21 #server.tag                  = "lighttpd"
22 #server.errorlog-use-syslog  = "enable"
23 #server.network-backend      = "write"
24
25 ### Use IPv6 if available
26 #include_shell "/usr/share/lighttpd/use-ipv6.pl"
27
28 #dir-listing.encoding        = "utf-8"
29 #server.dir-listing          = "enable"
30
31 include       "/etc/lighttpd/mime.conf"
32 include_shell "cat /etc/lighttpd/conf.d/*.conf"