From: Ryan Bloom Date: Mon, 24 Sep 2001 06:44:39 +0000 (+0000) Subject: Modify the standard config file to match to new semantics of MaxClients X-Git-Tag: 2.0.26~190 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=51a71722a1cf413e4c6ca85c70c2fc528b0f6b97;p=thirdparty%2Fapache%2Fhttpd.git Modify the standard config file to match to new semantics of MaxClients for the Worker MPM Submitted by: Aaron Bannert git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91123 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/conf/httpd-std.conf b/docs/conf/httpd-std.conf index a62ad28f603..a83cb3f5a70 100644 --- a/docs/conf/httpd-std.conf +++ b/docs/conf/httpd-std.conf @@ -132,15 +132,15 @@ MaxRequestsPerChild 0 # worker MPM # StartServers: initial number of server processes to start -# MaxClients: maximum number of server processes allowed to start +# MaxClients: maximum number of simultaneous client connections # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # ThreadsPerChild: constant number of worker threads in each server process # MaxRequestsPerChild: maximum number of requests a server process serves -StartServers 3 -MaxClients 8 -MinSpareThreads 5 +StartServers 2 +MaxClients 150 +MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0