commit: 021b4ea0c352c3ce95a9461e0f9ed08ef2019c90
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sat May 24 19:00:01 2014 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat May 24 19:00:01 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/apache.git;a=commit;h=021b4ea0
Renamed MaxRequestsPerChild to MaxConnectionsPerChild as per bug #511136.
---
2.4/conf/modules.d/00_mpm.conf | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/2.4/conf/modules.d/00_mpm.conf b/2.4/conf/modules.d/00_mpm.conf
index 25981fc..bcb9b6b 100644
--- a/2.4/conf/modules.d/00_mpm.conf
+++ b/2.4/conf/modules.d/00_mpm.conf
@@ -18,8 +18,8 @@ PidFile /run/apache2.pid
#
# StartServers: Number of child server processes created at startup
# MaxRequestWorkers: Maximum number of child processes to serve requests
-# MaxRequestsPerChild: Limit on the number of requests that an individual child
-# server will handle during its life
+# MaxConnectionsPerChild: Limit on the number of connections that an individual
+# child server will handle during its life
# prefork MPM
@@ -32,7 +32,7 @@ PidFile /run/apache2.pid
MinSpareServers 5
MaxSpareServers 10
MaxRequestWorkers 150
- MaxRequestsPerChild 10000
+ MaxConnectionsPerChild 10000
</IfModule>
# worker MPM
@@ -47,7 +47,7 @@ PidFile /run/apache2.pid
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestWorkers 150
- MaxRequestsPerChild 10000
+ MaxConnectionsPerChild 10000
</IfModule>
# event MPM
@@ -61,7 +61,7 @@ PidFile /run/apache2.pid
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestWorkers 150
- MaxRequestsPerChild 10000
+ MaxConnectionsPerChild 10000
</IfModule>
# peruser MPM
@@ -77,7 +77,7 @@ PidFile /run/apache2.pid
MinProcessors 2
MaxProcessors 10
MaxRequestWorkers 150
- MaxRequestsPerChild 1000
+ MaxConnectionsPerChild 1000
ExpireTimeout 1800
Multiplexer nobody nobody
@@ -93,7 +93,7 @@ PidFile /run/apache2.pid
MinSpareServers 5
MaxSpareServers 10
MaxRequestWorkers 150
- MaxRequestsPerChild 10000
+ MaxConnectionsPerChild 10000
</IfModule>
# vim: ts=4 filetype=apache