packages: apache/apache-mpm.conf - MaxRequestsPerChild has been renamed to ...

adamg adamg at pld-linux.org
Sat Feb 25 23:54:36 CET 2012


Author: adamg                        Date: Sat Feb 25 22:54:36 2012 GMT
Module: packages                      Tag: HEAD
---- Log message:
- MaxRequestsPerChild has been renamed to MaxConnectionsPerChild,
- MaxClients has been renamed to MaxRequestWorkers

---- Files affected:
packages/apache:
   apache-mpm.conf (1.5 -> 1.6) 

---- Diffs:

================================================================
Index: packages/apache/apache-mpm.conf
diff -u packages/apache/apache-mpm.conf:1.5 packages/apache/apache-mpm.conf:1.6
--- packages/apache/apache-mpm.conf:1.5	Sat Feb 25 23:49:45 2012
+++ packages/apache/apache-mpm.conf	Sat Feb 25 23:54:30 2012
@@ -30,28 +30,28 @@
 # StartServers: number of server processes to start
 # MinSpareServers: minimum number of server processes which are kept spare
 # MaxSpareServers: maximum number of server processes which are kept spare
-# MaxClients: maximum number of server processes allowed to start
-# MaxRequestsPerChild: maximum number of requests a server process serves
+# MaxRequestWorkers: maximum number of server processes allowed to start
+# MaxConnectionsPerChild: maximum number of requests a server process serves
 <IfModule mpm_prefork_module>
 	StartServers		  5
 	MinSpareServers	 	  5
 	MaxSpareServers	 	 10
-	MaxClients		  	150
-	MaxRequestsPerChild   0
+	MaxRequestWorkers		  	150
+	MaxConnectionsPerChild   0
 </IfModule>
 
 # worker MPM
 # StartServers: initial number of server processes to start
-# MaxClients: maximum number of simultaneous client connections
+# MaxRequestWorkers: 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
+# MaxConnectionsPerChild: maximum number of requests a server process serves
 <IfModule mpm_worker_module>
 	StartServers		2
-	MaxClients		 	150
+	MaxRequestWorkers		 	150
 	MinSpareThreads	 	25
 	MaxSpareThreads	 	75
 	ThreadsPerChild	 	25
-	MaxRequestsPerChild	0
+	MaxConnectionsPerChild	0
 </IfModule>
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-mpm.conf?r1=1.5&r2=1.6&f=u



More information about the pld-cvs-commit mailing list