]> granicus.if.org Git - apache/commitdiff
Modify the standard config file to match to new semantics of MaxClients
authorRyan Bloom <rbb@apache.org>
Mon, 24 Sep 2001 06:44:39 +0000 (06:44 +0000)
committerRyan Bloom <rbb@apache.org>
Mon, 24 Sep 2001 06:44:39 +0000 (06:44 +0000)
for the Worker MPM
Submitted by:  Aaron Bannert <aaron@clove.org>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91123 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/httpd-std.conf

index a62ad28f60380b65709ee5524833dd9f89e7e13d..a83cb3f5a705aa4bd7747e700731ea200f14ac69 100644 (file)
@@ -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
 <IfModule worker.c>
-StartServers         3
-MaxClients           8
-MinSpareThreads      5
+StartServers         2
+MaxClients         150
+MinSpareThreads     25
 MaxSpareThreads     75 
 ThreadsPerChild     25
 MaxRequestsPerChild  0