]> git.pld-linux.org Git - packages/lighttpd.git/blobdiff - lighttpd.conf
- requires --makepid capable rc-scripts
[packages/lighttpd.git] / lighttpd.conf
index 7404b800c5cbe7737f11413462627ae8b02dc4f3..1922d5acb2c399a0277b7a8e0ce456130479926e 100644 (file)
@@ -11,6 +11,10 @@ server.document-root = "/home/services/lighttpd/html/"
 server.errorlog = "/var/log/lighttpd/error.log"
 #server.errorlog-use-syslog = "enable"
 
+## http://redmine.lighttpd.net/projects/lighttpd/repository/revisions/2550
+## NOTE: It is not reopened in log_error_cycle, so don't setup logrotate to this.
+server.breakagelog = "/var/log/lighttpd/breakage.log"
+
 server.pid-file = "/var/run/lighttpd.pid"
 
 # mimetype mapping
@@ -55,6 +59,9 @@ $HTTP["url"] =~ "\.pdf$" {
        server.range-requests = "disable"
 }
 
+## Skip responding with 417 for unhandled Expect header for some broken applications
+#server.reject-expect-100-with-417 = "disable"
+
 ######### Options that are good to be but not neccesary to be changed #######
 
 ## bind to port (default: 80)
@@ -62,7 +69,7 @@ server.port = 80
 
 ## bind to specific host (default: all interfaces)
 ## the name is resolved to ip at startup only.
-#server.bind = "grisu.home.kneschke.de"
+#server.bind = "www.example.org"
 
 ## additionally just bind to localhost:80
 #$SERVER["socket"] == "127.0.0.1:80"  {}
This page took 0.050154 seconds and 4 git commands to generate.