Commit 0abae2ed authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Modify the standard config file to match to new semantics of MaxClients

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
parent 6f3f628f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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