From: Rainer Jung Date: Tue, 15 Jun 2010 20:08:49 +0000 (+0000) Subject: Add a configuration block for Event MPM. X-Git-Tag: 2.3.7~171 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cdc8db7eb5259441f114b449e8ab66421a2c03d6;p=apache Add a configuration block for Event MPM. Event is now the default MPM for many platforms, so we should provide an explicit configuration. Discussion for good values to follow. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@955033 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/conf/extra/httpd-mpm.conf.in b/docs/conf/extra/httpd-mpm.conf.in index 0987cfca99..a6fab6dbd5 100644 --- a/docs/conf/extra/httpd-mpm.conf.in +++ b/docs/conf/extra/httpd-mpm.conf.in @@ -56,6 +56,22 @@ MaxRequestsPerChild 0 +# event MPM +# StartServers: initial number of server processes to start +# MaxClients: maximum number of simultaneous client connections +# MinSpareThreads: minimum number of worker threads which are kept spare +# MaxSpareThreads: maximum number of worker threads which are kept spare +# ThreadsPerChild: constant number of worker threads in each server process +# MaxRequestsPerChild: maximum number of requests a server process serves + + StartServers 2 + MaxClients 150 + MinSpareThreads 25 + MaxSpareThreads 75 + ThreadsPerChild 25 + MaxRequestsPerChild 0 + + # NetWare MPM # ThreadStackSize: Stack size allocated for each worker thread # StartThreads: Number of worker threads launched at server startup