]> granicus.if.org Git - apache/commitdiff
Updated event mpm configuration to match the defaults in documentation and header...
authorDaniel Gruno <humbedooh@apache.org>
Thu, 29 Mar 2012 13:19:37 +0000 (13:19 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Thu, 29 Mar 2012 13:19:37 +0000 (13:19 +0000)
Updated prefork defaults to better match documentation and header definition.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1306841 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/extra/httpd-mpm.conf.in

index 9719dbfdc18cd5beb53530cbe49d5de4392712d9..c15c7e85da6b53e11eb05bedc058e71f18fb6a42 100644 (file)
@@ -37,7 +37,7 @@
     StartServers             5
     MinSpareServers          5
     MaxSpareServers         10
-    MaxRequestWorkers      150
+    MaxRequestWorkers      250
     MaxConnectionsPerChild   0
 </IfModule>
 
 # 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>