Guest User

lighttpd.conf

a guest
Oct 25th, 2020
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. server.document-root = "/opt/share/www_suste"
  2. server.upload-dirs = ( "/tmp" )
  3. server.errorlog = "/opt/var/log/lighttpd/error.log"
  4. server.breakagelog = "/opt/var/log/lighttpd/cgi.log"
  5. server.pid-file = "/opt/var/run/lighttpd.pid"
  6. #server.username = "admin"
  7. #server.groupname = "www-data"
  8.  
  9. index-file.names = ( "index.php", "index.html",
  10. "index.htm", "default.htm",
  11. )
  12.  
  13. static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
  14. cgi.assign = ( ".cgi" => "" )
  15.  
  16. ### Options that are useful but not always necessary:
  17. server.chroot = "/"
  18. server.port = 9092
  19. #server.bind = "localhost"
  20. #server.tag = "lighttpd"
  21. #server.errorlog-use-syslog = "enable"
  22. #server.network-backend = "writev"
  23.  
  24. ### Use IPv6 if available
  25. #include_shell "/opt/share/lighttpd/use-ipv6.pl"
  26.  
  27. #dir-listing.encoding = "utf-8"
  28. #server.dir-listing = "enable"
  29.  
  30. include "/opt/etc/lighttpd/mime.conf"
  31. include "/opt/etc/lighttpd/conf.d/*.conf"
  32.  
  33. server.http-parseopts = ("header-strict" => "enable", "host-strict" => "enable", "host-normalize" => "enable", "url-normalize" => "enable", "url-normalize-unreserved" => "enable", "url-normalize-required" => "enable", "url-ctrls-reject" => "enable", "url-path-2f-decode" => "disable", "url-path-dotseg-remove" => "enable", "url-query-20-plus" => "disable")
Add Comment
Please, Sign In to add comment