You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Rainer Jung <ra...@kippdata.de> on 2008/11/29 20:27:16 UTC

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

pquerna@apache.org schrieb:
> Author: pquerna
> Date: Sun Nov  9 21:48:21 2008
> New Revision: 712611
> 
> URL: http://svn.apache.org/viewvc?rev=712611&view=rev
> Log:
> Add Simple MPM to example mpm config.
> 
> Submited by: Ryan Phillips <ryan trolocsis.com>
> 
> 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=712611&r1=712610&r2=712611&view=diff
> ==============================================================================
> --- httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in (original)
> +++ httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in Sun Nov  9 21:48:21 2008
> @@ -21,6 +21,15 @@
>  </IfModule>
>  </IfModule>
>  
> +
> +# Simple MPM
> +# SimpleProcCount: Number of child processes launched at server startup
> +# SimpleThreadCount: Set the number of Worker Threads Per-Process
> +<IfModule mpm_simple_module>
> +    SimpleProcCount 5
> +    SimpleThreadCount 5
> +</IfModule>
> +
>  #
>  # Only one of the below sections will be relevant on your
>  # installed httpd.  Use "apachectl -l" to find out the

You might want to flip the simple mpm block and the general mpm comment
following it:

Index: httpd-mpm.conf.in
===================================================================
--- httpd-mpm.conf.in   (Revision 721705)
+++ httpd-mpm.conf.in   (Arbeitskopie)
@@ -22,6 +22,12 @@
 </IfModule>


+#
+# Only one of the below sections will be relevant on your
+# installed httpd.  Use "apachectl -l" to find out the
+# active mpm.
+#
+
 # Simple MPM
 # SimpleProcCount: Number of child processes launched at server startup
 # SimpleThreadCount: Set the number of Worker Threads Per-Process
@@ -30,12 +36,6 @@
     SimpleThreadCount 5
 </IfModule>

-#
-# Only one of the below sections will be relevant on your
-# installed httpd.  Use "apachectl -l" to find out the
-# active mpm.
-#
-
 # prefork MPM
 # StartServers: number of server processes to start
 # MinSpareServers: minimum number of server processes which are kept spare

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

Posted by Rainer Jung <ra...@kippdata.de>.
On 29.11.2008 20:27, Rainer Jung wrote:
> pquerna@apache.org schrieb:
>> Author: pquerna
>> Date: Sun Nov  9 21:48:21 2008
>> New Revision: 712611
>>
>> URL: http://svn.apache.org/viewvc?rev=712611&view=rev
>> Log:
>> Add Simple MPM to example mpm config.
>>
>> Submited by: Ryan Phillips<ryan trolocsis.com>
>>
>> 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=712611&r1=712610&r2=712611&view=diff
>> ==============================================================================
>> --- httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in (original)
>> +++ httpd/httpd/trunk/docs/conf/extra/httpd-mpm.conf.in Sun Nov  9 21:48:21 2008
>> @@ -21,6 +21,15 @@
>>   </IfModule>
>>   </IfModule>
>>
>> +
>> +# Simple MPM
>> +# SimpleProcCount: Number of child processes launched at server startup
>> +# SimpleThreadCount: Set the number of Worker Threads Per-Process
>> +<IfModule mpm_simple_module>
>> +    SimpleProcCount 5
>> +    SimpleThreadCount 5
>> +</IfModule>
>> +
>>   #
>>   # Only one of the below sections will be relevant on your
>>   # installed httpd.  Use "apachectl -l" to find out the
>
> You might want to flip the simple mpm block and the general mpm comment
> following it:

Done in r727761.