]> git.pld-linux.org Git - packages/lighttpd.git/blobdiff - lighttpd-php-spawned.conf
sample more debug variables
[packages/lighttpd.git] / lighttpd-php-spawned.conf
index 485f4030d290d87bb3fcb93a82736d93abc8b83f..b9869aea8e270eaaa18f9e164bd4d00abbfe4b90 100644 (file)
@@ -1,20 +1,33 @@
 # FastCGI server for PHP
+
+# Sometimes you need to run old html file(s) as php pages, especially if you
+# are migrating from Apache web server. To treat html pages as php you need to
+# map multiple extensions to the same fastcgi server using fastcgi.map-extensions
+# directive.
+#fastcgi.map-extensions = (
+#      ".html" => ".php",
+#      ".php3" => ".php",
+#)
+
 fastcgi.server += (
        ".php" => ((
                "bin-path" => "/usr/bin/php.fcgi",
                "socket" => "/var/run/php/php-fcgi-" + var.pid + ".sock",
                "max-procs" => 2,
                "idle-timeout" => 20,
+               # SIGTERM is graceful shutdown in PLD Linux, use `kill -l' to figure out other signal numbers.
+#              "kill-signal" => 15,
                "bin-environment" => (
                        "PHP_FCGI_CHILDREN" => "4",
                        "PHP_FCGI_MAX_REQUESTS" => "10000"
                ),
                "bin-copy-environment" => (
-                       "PATH", "SHELL", "USER"
+                       "PATH", "SHELL"
                ),
                "broken-scriptfilename" => "enable",
                "check-local" => "enable",
                "disable-time" => 1,
+#        "allow-x-send-file" => "enable",
        ))
 )
 
This page took 0.04297 seconds and 4 git commands to generate.