[pkg-lighttpd] r436 - lighttpd/trunk/debian/conf-available

Olaf van der Spek olafvdspek-guest at alioth.debian.org
Thu May 20 23:33:59 UTC 2010


Author: olafvdspek-guest
Date: 2010-05-20 23:33:58 +0000 (Thu, 20 May 2010)
New Revision: 436

Added:
   lighttpd/trunk/debian/conf-available/15-fastcgi-php.conf
Removed:
   lighttpd/trunk/debian/conf-available/15-fastcgi.conf
Log:
rename 15-fastcgi to 15-fastcgi-php


Copied: lighttpd/trunk/debian/conf-available/15-fastcgi-php.conf (from rev 431, lighttpd/trunk/debian/conf-available/15-fastcgi.conf)
===================================================================
--- lighttpd/trunk/debian/conf-available/15-fastcgi-php.conf	                        (rev 0)
+++ lighttpd/trunk/debian/conf-available/15-fastcgi-php.conf	2010-05-20 23:33:58 UTC (rev 436)
@@ -0,0 +1,24 @@
+## FastCGI programs have the same functionality as CGI programs,
+## but are considerably faster through lower interpreter startup
+## time and socketed communication
+##
+## Documentation: /usr/share/doc/lighttpd-doc/fastcgi.txt.gz
+##                http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions#mod_fastcgi-fastcgi
+
+## Start an FastCGI server for php (needs the php5-cgi package)
+fastcgi.server += ( ".php" => 
+	((
+		"bin-path" => "/usr/bin/php-cgi",
+		"socket" => "/tmp/php.socket",
+		"max-procs" => 1,
+		"idle-timeout" => 20,
+		"bin-environment" => ( 
+			"PHP_FCGI_CHILDREN" => "4",
+			"PHP_FCGI_MAX_REQUESTS" => "10000"
+		),
+		"bin-copy-environment" => (
+			"PATH", "SHELL", "USER"
+		),
+		"broken-scriptfilename" => "enable"
+	))
+)

Deleted: lighttpd/trunk/debian/conf-available/15-fastcgi.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/15-fastcgi.conf	2010-05-20 23:21:19 UTC (rev 435)
+++ lighttpd/trunk/debian/conf-available/15-fastcgi.conf	2010-05-20 23:33:58 UTC (rev 436)
@@ -1,24 +0,0 @@
-## FastCGI programs have the same functionality as CGI programs,
-## but are considerably faster through lower interpreter startup
-## time and socketed communication
-##
-## Documentation: /usr/share/doc/lighttpd-doc/fastcgi.txt.gz
-##                http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions#mod_fastcgi-fastcgi
-
-## Start an FastCGI server for php (needs the php5-cgi package)
-fastcgi.server += ( ".php" => 
-	((
-		"bin-path" => "/usr/bin/php-cgi",
-		"socket" => "/tmp/php.socket",
-		"max-procs" => 1,
-		"idle-timeout" => 20,
-		"bin-environment" => ( 
-			"PHP_FCGI_CHILDREN" => "4",
-			"PHP_FCGI_MAX_REQUESTS" => "10000"
-		),
-		"bin-copy-environment" => (
-			"PATH", "SHELL", "USER"
-		),
-		"broken-scriptfilename" => "enable"
-	))
-)




More information about the pkg-lighttpd-maintainers mailing list