You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1001 B

  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. index-file.names = ( "index.php", "index.html",
  8. "index.htm", "default.htm",
  9. )
  10. static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
  11. ### Options that are useful but not always necessary:
  12. #server.chroot = "/"
  13. #server.port = 81
  14. #server.bind = "localhost"
  15. #server.tag = "lighttpd"
  16. #server.errorlog-use-syslog = "enable"
  17. #server.network-backend = "writev"
  18. ### Use IPv6 if available
  19. #include_shell "/usr/share/lighttpd/use-ipv6.pl"
  20. #dir-listing.encoding = "utf-8"
  21. #server.dir-listing = "enable"
  22. include "/etc/lighttpd/mime.conf"
  23. include "/etc/lighttpd/conf.d/*.conf"