From f3a60dd1a61fb720c2e4d68ba71de25a35e06567 Mon Sep 17 00:00:00 2001 From: Shane Caraveo Date: Sun, 10 Mar 2002 21:52:00 +0000 Subject: [PATCH] children should be zero by default, enable by setting PHP_FCGI_CHILDREN env var. --- sapi/cgi/cgi_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0