You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs@httpd.apache.org by Daniel Shahaf <da...@elego.de> on 2012/01/13 18:01:32 UTC

[PATCH] Clarify mpm-accept documentation

Things I ran into while trying to upgrade
https://svn.apache.org/repos/asf/subversion/trunk/subversion/tests/cmdline/davautocheck.sh
to httpd-2.4 compatibility:

[[[
Fix a syntax error.  Clarify that mpm-accept will not work with MPMs
such as event.
]]]

[[[
Index: manual/mod/core.xml
===================================================================
--- manual/mod/core.xml	(revision 1231132)
+++ manual/mod/core.xml	(working copy)
@@ -3182,7 +3182,7 @@
 	</tr>
         <tr>
             <td><code>mpm-accept</code></td>
-            <td><module>prefork</module> and <module>worker</module> MPMs</td>
+            <td><module>prefork</module> and <module>worker</module> MPMs only</td>
             <td>incoming connections, to avoid the thundering herd problem;
             for more information, refer to the
             <a href="../misc/perf-tuning.html">performance tuning</a>
@@ -3237,7 +3237,7 @@
 
     <example>
     Mutex default sysvsem<br />
-    Mutex mpm-accept fcntl:/var/httpd/locks
+    Mutex fcntl:/var/httpd/locks mpm-accept
     </example>
 </usage>
 </directivesynopsis>
]]]

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: [PATCH] Clarify mpm-accept documentation

Posted by Jeff Trawick <tr...@gmail.com>.
On Fri, Jan 13, 2012 at 12:01 PM, Daniel Shahaf <da...@elego.de> wrote:
> Things I ran into while trying to upgrade
> https://svn.apache.org/repos/asf/subversion/trunk/subversion/tests/cmdline/davautocheck.sh
> to httpd-2.4 compatibility:
>
> [[[
> Fix a syntax error.  Clarify that mpm-accept will not work with MPMs
> such as event.

Thanks!  I fixed that and another syntax error in r1231607.

I think the other issue is okay as is; it is common in the
documentation to provide a list of modules with which a directive can
be used, and it must be understood that unlisted modules don't support
the directive.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org