]> andersk Git - sql.git/blobdiff - etc/lighttpd/lighttpd.conf
lighttpd.conf: upgrade to lighttpd 1.5 r2522
[sql.git] / etc / lighttpd / lighttpd.conf
index 82b4d891238147d9aa8f5447836e9a081898d65d..58606c16e49d9305867af9672015ed9c4394ec94 100644 (file)
@@ -1,32 +1,24 @@
-server.modules              = ( "mod_rewrite", "mod_alias", "mod_access", "mod_fastcgi", "mod_redirect", "mod_accesslog" )
+server.modules              = ( "mod_rewrite", "mod_alias", "mod_access", "mod_proxy_core", "mod_proxy_backend_fastcgi", "mod_redirect", "mod_accesslog" )
 server.errorlog             = "/var/log/lighttpd/error_log"
-accesslog.filename          = "/var/log/lighttpd/access_log"
+$HTTP["useragent"] !~ "^check_http" {
+    accesslog.filename          = "/var/log/lighttpd/access_log"
+}
 etag.use-inode              = "disable"
 index-file.names            = ( "index.php", "index.html" )
-server.tag                  = ""
 url.access-deny             = ( "~", ".inc", ".svn", "CVS" )
 static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
-static-file.etags           = "enable"
 server.port                 = 80
-#server.bind                = "localhost"
-#server.error-handler-404   = "/error-handler.html"
-#server.error-handler-404   = "/error-handler.php"
 server.pid-file             = "/var/run/lighttpd.pid"
 server.username             = "lighttpd"
 server.groupname            = "lighttpd"
-fastcgi.server              = ( ".php" =>
-                                ( "localhost" => (
-                                    "socket" => "/tmp/php-fastcgi.socket",
-                                    "bin-path" => "/usr/bin/php-cgi",
-                                    "min-procs" => 2,
-                                    "max-procs" => 2,
-                                    "bin-environment" => (
-                                        "PHP_FCGI_CHILDREN" => "4",
-                                        "PHP_FCGI_MAX_REQUESTS" => "10000"
-                                    ),
-                                    "broken-scriptfilename" => "enable"
-                                ))
-                              )
+
+$PHYSICAL["existing-path"] =~ "\.php$" {
+    proxy-core.balancer = "round-robin"
+    proxy-core.allow-x-sendfile = "enable"
+    proxy-core.protocol = "fastcgi"
+    proxy-core.backends = ( "unix:/tmp/php-fastcgi.sock" )
+    proxy-core.max-pool-size = 4
+}
 
 server.document-root = "/srv/web/home/"
 alias.url = ( "/~sql" => "/srv/web" )
This page took 0.039903 seconds and 4 git commands to generate.