lighttpd.conf (1001B)
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 ### Options that are useful but not always necessary: 15 #server.chroot = "/" 16 #server.port = 81 17 #server.bind = "localhost" 18 #server.tag = "lighttpd" 19 #server.errorlog-use-syslog = "enable" 20 #server.network-backend = "writev" 21 22 ### Use IPv6 if available 23 #include_shell "/usr/share/lighttpd/use-ipv6.pl" 24 25 #dir-listing.encoding = "utf-8" 26 #server.dir-listing = "enable" 27 28 include "/etc/lighttpd/mime.conf" 29 include "/etc/lighttpd/conf.d/*.conf"