increase server.max-write-idle to 999

This commit is contained in:
Scott Ullrich 2009-02-10 15:56:56 -05:00
parent aa3975de53
commit 472d46e733

View File

@ -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"