]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Link to MPM doc; Add LoadModule for each MPM.
authorRich Bowen <rbowen@apache.org>
Tue, 16 Jun 2026 14:22:50 +0000 (14:22 +0000)
committerRich Bowen <rbowen@apache.org>
Tue, 16 Jun 2026 14:22:50 +0000 (14:22 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1935407 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/event.xml
docs/manual/mod/motorz.xml
docs/manual/mod/mpm_netware.xml
docs/manual/mod/mpm_winnt.xml
docs/manual/mod/mpmt_os2.xml
docs/manual/mod/prefork.xml
docs/manual/mod/worker.xml
docs/manual/mpm.xml

index 36f68f529dd8c8fa0f0a749749fd9b7999a51b4c..9211f8f259daef7e17b171a4bd2cb0b7aa516f44 100644 (file)
@@ -39,8 +39,16 @@ of consuming threads only for connections with active processing</description>
       <code>--with-mpm=event</code> to the <program>configure</program>
       script's arguments when building the <program>httpd</program>.</p>
 
+
+    <p>When built as a DSO module, it can be loaded with:</p>
+
+    <highlight language="config">
+LoadModule mpm_event_module modules/mod_mpm_event.so
+    </highlight>
+
 </summary>
 
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
 <seealso><a href="worker.html">The worker MPM</a></seealso>
 
 <section id="event-worker-relationship"><title>Relationship with the Worker MPM</title>
index 8950e4767320c3bdb9045b04d46bb91807facc7f..8cefb8e7f1dc6fb90bbbcd46199af601029ac23c 100644 (file)
@@ -49,8 +49,16 @@ built on the APR pollset and thread pool especially suited as a reverse proxy</d
       it as a loadable module with
       <code>--enable-mpms-shared=motorz</code>.</p>
 
+
+    <p>When built as a DSO module, it can be loaded with:</p>
+
+    <highlight language="config">
+LoadModule mpm_motorz_module modules/mod_mpm_motorz.so
+    </highlight>
+
 </summary>
 
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
 <seealso><a href="event.html">The event MPM</a></seealso>
 <seealso><a href="worker.html">The worker MPM</a></seealso>
 <seealso><a href="prefork.html">The prefork MPM</a></seealso>
index 5ea65a50f3e3aed210220af03404566a6de9c317..01c2e225f7a2f6ee3009db4766f1c0363ae76b10 100644 (file)
@@ -60,7 +60,9 @@
     ones and launching new ones. On the NetWare OS it is highly
     recommended that this directive remain set to 0. This allows worker
     threads to continue servicing requests indefinitely.</p>
+
 </summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
 <seealso><a href="../bind.html">Setting which addresses and
     ports Apache httpd uses</a>
 </seealso>
index 45012c56cec472a52b348fe86d363403042086f6..9db82b79bda512f552edb4da363b93263cfb358e 100644 (file)
@@ -95,8 +95,10 @@ AcceptFilter https none
       documentation for details.)</li>
     </ul>
 
+
 </summary>
 
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
 <seealso><a href="../platform/windows.html">Using Apache HTTP Server on Microsoft Windows</a></seealso>
 
 <directivesynopsis location="core"><name>AcceptFilter</name>
index 368e25409193ac058ffbd63a02300ef4bad6cadb..35deb307e05e3bd1be2a19f075392e4ddc01dc47 100644 (file)
@@ -43,7 +43,9 @@
     maintenance thread so that the number of idle threads is kept between
     <directive module="mpm_common">MinSpareThreads</directive> and
     <directive module="mpm_common">MaxSpareThreads</directive>.</p>
+
 </summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
 <seealso><a href="../bind.html">Setting which addresses and ports Apache
 uses</a></seealso>
 
index 715b581a2ccdda64e3b8ab9d5bd95620538a7217..5ebdb5c776e0a8a3c4358af458f7fcd7015e513e 100644 (file)
     to handle as many simultaneous requests as you expect to receive, but
     small enough to assure that there is enough physical RAM for all
     processes.</p>
+
+    <p>When built as a DSO module, it can be loaded with:</p>
+
+    <highlight language="config">
+LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+    </highlight>
+
 </summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
 <seealso><a href="../bind.html">Setting which addresses and ports Apache HTTP Server
 uses</a></seealso>
 
index ceec2103445ed24f4756bde161c0a6b533c08b7b..c03920907166afb008e36811329e9884343a1a77 100644 (file)
     <directive module="mpm_common">MaxRequestWorkers</directive>, which
     controls the maximum total number of threads that may be
     launched.</p>
+
+    <p>When built as a DSO module, it can be loaded with:</p>
+
+    <highlight language="config">
+LoadModule mpm_worker_module modules/mod_mpm_worker.so
+    </highlight>
+
 </summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
 <seealso><a href="../bind.html">Setting which addresses and ports Apache HTTP Server uses</a></seealso>
 
 <section id="how-it-works"><title>How it Works</title>
index 03d1395186baa1722d452bb1d28e316289f92833..f17098e7fba48a3821a62ccaba87b91e365a00fc 100644 (file)
@@ -140,7 +140,7 @@ two features.</p>
     for the MPM instead of by rebuilding the server.</p>
 
     <highlight language="config">
-    LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+    LoadModule mpm_event_module modules/mod_mpm_event.so
     </highlight>
 
     <p>Attempting to <directive module="mod_so">LoadModule</directive>