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/28 17:33:05 UTC

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

Author: humbedooh
Date: Wed Mar 28 15:33:04 2012
New Revision: 1306426

URL: http://svn.apache.org/viewvc?rev=1306426&view=rev
Log:
Update worker mpm defaults to match documentation and built-in defaults.
As per https://issues.apache.org/bugzilla/show_bug.cgi?id=52102

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=1306426&r1=1306425&r2=1306426&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in Wed Mar 28 15:33:04 2012
@@ -50,11 +50,11 @@
 # MaxConnectionsPerChild: maximum number of connections a server process serves
 #                         before terminating
 <IfModule mpm_worker_module>
-    StartServers             2
-    MinSpareThreads         25
-    MaxSpareThreads         75 
+    StartServers             3
+    MinSpareThreads         75
+    MaxSpareThreads        250 
     ThreadsPerChild         25
-    MaxRequestWorkers      150
+    MaxRequestWorkers      400
     MaxConnectionsPerChild   0
 </IfModule>