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.

32 lines
1.0 KiB

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