From: Shane Caraveo Date: Sun, 10 Mar 2002 21:52:00 +0000 (+0000) Subject: children should be zero by default, enable by setting PHP_FCGI_CHILDREN env var. X-Git-Tag: help~102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3a60dd1a61fb720c2e4d68ba71de25a35e06567;p=php children should be zero by default, enable by setting PHP_FCGI_CHILDREN env var. --- diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index b4991517a2..e4cdbcf550 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -96,7 +96,7 @@ char **merge_env; /** * Number of child processes that will get created to service requests */ -static int children = 8; +static int children = 0; /** * Set to non-zero if we are the parent process