From 472d46e7339b6e4d918de4e426907ade7d084c19 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Tue, 10 Feb 2009 15:56:56 -0500 Subject: [PATCH] increase server.max-write-idle to 999 --- etc/inc/system.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/etc/inc/system.inc b/etc/inc/system.inc index 182415dd0e..971f4373d7 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -755,6 +755,7 @@ fastcgi.server = ( ".php" => "socket" => "/tmp/php-fastcgi.socket", "min-procs" => 1, "max-procs" => {$max_procs}, + "idle-timeout" => 0, {$bin_environment} "bin-path" => "/usr/local/bin/php" ) @@ -822,6 +823,9 @@ server.modules = ( server.document-root = "{$document_root}" {$captive_portal_rewrite} +# Maximum idle time with nothing being written (php downloading) +server.max-write-idle = 999 + ## where to send error-messages to server.errorlog = "/var/log/lighttpd.error.log"