You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/03/29 15:19:37 UTC

svn commit: r1306841 - /httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in

Author: humbedooh
Date: Thu Mar 29 13:19:37 2012
New Revision: 1306841

URL: http://svn.apache.org/viewvc?rev=1306841&view=rev
Log:
Updated event mpm configuration to match the defaults in documentation and header definitions.
Updated prefork defaults to better match documentation and header definition.

Modified:
    httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in?rev=1306841&r1=1306840&r2=1306841&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in Thu Mar 29 13:19:37 2012
@@ -37,7 +37,7 @@
     StartServers             5
     MinSpareServers          5
     MaxSpareServers         10
-    MaxRequestWorkers      150
+    MaxRequestWorkers      250
     MaxConnectionsPerChild   0
 </IfModule>
 
@@ -67,11 +67,11 @@
 # MaxConnectionsPerChild: maximum number of connections a server process serves
 #                         before terminating
 <IfModule mpm_event_module>
-    StartServers             2
-    MinSpareThreads         25
-    MaxSpareThreads         75
+    StartServers             3
+    MinSpareThreads         75
+    MaxSpareThreads        250
     ThreadsPerChild         25
-    MaxRequestWorkers      150
+    MaxRequestWorkers      400
     MaxConnectionsPerChild   0
 </IfModule>