From a67b9fb95514803bc92497b42f070ce9b7e6f551 Mon Sep 17 00:00:00 2001 From: Ermal Date: Thu, 15 Mar 2012 14:58:33 +0000 Subject: Set FCGI_CHILDREN to 0 since it does not make sense php to manage itself when lighttpd is doing so. This makes it possible to recover from 550-Internal... error. --- etc/inc/system.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/inc/system.inc b/etc/inc/system.inc index 2be5f48..dc09526 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -792,7 +792,7 @@ function system_generate_lighty_config($filename, if($captive_portal == true) { $bin_environment = << ( - "PHP_FCGI_CHILDREN" => "$max_procs", + "PHP_FCGI_CHILDREN" => "0", "PHP_FCGI_MAX_REQUESTS" => "500" ), EOC; @@ -800,7 +800,7 @@ EOC; } else if ($avail > 0 and $avail < 128) { $bin_environment = << ( - "PHP_FCGI_CHILDREN" => "$max_procs", + "PHP_FCGI_CHILDREN" => "0", "PHP_FCGI_MAX_REQUESTS" => "2", ), @@ -808,7 +808,7 @@ EOC; } else $bin_environment = << ( - "PHP_FCGI_CHILDREN" => "$max_procs", + "PHP_FCGI_CHILDREN" => "0", "PHP_FCGI_MAX_REQUESTS" => "500" ), EOC; -- cgit v1.1