diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2014-05-24 21:00:01 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2014-05-24 21:00:01 +0200 |
commit | 021b4ea0c352c3ce95a9461e0f9ed08ef2019c90 (patch) | |
tree | 101624903f363d734de256f74ac70111d13d9ed8 | |
parent | Fixed references to online manual in apache-2.4 config files. (diff) | |
download | apache-021b4ea0c352c3ce95a9461e0f9ed08ef2019c90.tar.gz apache-021b4ea0c352c3ce95a9461e0f9ed08ef2019c90.tar.bz2 apache-021b4ea0c352c3ce95a9461e0f9ed08ef2019c90.zip |
Renamed MaxRequestsPerChild to MaxConnectionsPerChild as per bug #511136.
-rw-r--r-- | 2.4/conf/modules.d/00_mpm.conf | 14 |
1 files 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 |