]> git.pld-linux.org Git - packages/apache.git/commitdiff
- MaxRequestsPerChild has been renamed to MaxConnectionsPerChild,
authorAdam Gołębiowski <adamg@pld-linux.org>
Sat, 25 Feb 2012 22:54:30 +0000 (22:54 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- MaxClients has been renamed to MaxRequestWorkers

Changed files:
    apache-mpm.conf -> 1.6

apache-mpm.conf

index d40aa748984b8ffc86147db6f1d1bf622fbb348b..4bea6a2cb10387137df3e3150ba7fa58cb81c827 100644 (file)
@@ -30,28 +30,28 @@ LockFile /var/run/httpd/accept.lock
 # 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>
This page took 0.082239 seconds and 4 git commands to generate.