From: Rich Bowen
Date: Tue, 16 Jun 2026 14:22:50 +0000 (+0000)
Subject: Link to MPM doc; Add LoadModule for each MPM.
X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31662b4f9db061a63b4ea796bb7d1c02cce360ba;p=thirdparty%2Fapache%2Fhttpd.git
Link to MPM doc; Add LoadModule for each MPM.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1935407 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/event.xml b/docs/manual/mod/event.xml
index 36f68f529d..9211f8f259 100644
--- a/docs/manual/mod/event.xml
+++ b/docs/manual/mod/event.xml
@@ -39,8 +39,16 @@ of consuming threads only for connections with active processing
--with-mpm=event to the configure
script's arguments when building the httpd.
+
+ When built as a DSO module, it can be loaded with:
+
+
+LoadModule mpm_event_module modules/mod_mpm_event.so
+
+
+Multi-Processing Modules (MPMs)
The worker MPM
Relationship with the Worker MPM
diff --git a/docs/manual/mod/motorz.xml b/docs/manual/mod/motorz.xml
index 8950e47673..8cefb8e7f1 100644
--- a/docs/manual/mod/motorz.xml
+++ b/docs/manual/mod/motorz.xml
@@ -49,8 +49,16 @@ built on the APR pollset and thread pool especially suited as a reverse proxy--enable-mpms-shared=motorz.
+
+ When built as a DSO module, it can be loaded with:
+
+
+LoadModule mpm_motorz_module modules/mod_mpm_motorz.so
+
+
+Multi-Processing Modules (MPMs)
The event MPM
The worker MPM
The prefork MPM
diff --git a/docs/manual/mod/mpm_netware.xml b/docs/manual/mod/mpm_netware.xml
index 5ea65a50f3..01c2e225f7 100644
--- a/docs/manual/mod/mpm_netware.xml
+++ b/docs/manual/mod/mpm_netware.xml
@@ -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.
+
+Multi-Processing Modules (MPMs)
Setting which addresses and
ports Apache httpd uses
diff --git a/docs/manual/mod/mpm_winnt.xml b/docs/manual/mod/mpm_winnt.xml
index 45012c56ce..9db82b79bd 100644
--- a/docs/manual/mod/mpm_winnt.xml
+++ b/docs/manual/mod/mpm_winnt.xml
@@ -95,8 +95,10 @@ AcceptFilter https none
documentation for details.)
+
+Multi-Processing Modules (MPMs)
Using Apache HTTP Server on Microsoft Windows
AcceptFilter
diff --git a/docs/manual/mod/mpmt_os2.xml b/docs/manual/mod/mpmt_os2.xml
index 368e254091..35deb307e0 100644
--- a/docs/manual/mod/mpmt_os2.xml
+++ b/docs/manual/mod/mpmt_os2.xml
@@ -43,7 +43,9 @@
maintenance thread so that the number of idle threads is kept between
MinSpareThreads and
MaxSpareThreads.
+
+Multi-Processing Modules (MPMs)
Setting which addresses and ports Apache
uses
diff --git a/docs/manual/mod/prefork.xml b/docs/manual/mod/prefork.xml
index 715b581a2c..5ebdb5c776 100644
--- a/docs/manual/mod/prefork.xml
+++ b/docs/manual/mod/prefork.xml
@@ -43,7 +43,15 @@
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.
+
+ When built as a DSO module, it can be loaded with:
+
+
+LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+
+
+Multi-Processing Modules (MPMs)
Setting which addresses and ports Apache HTTP Server
uses
diff --git a/docs/manual/mod/worker.xml b/docs/manual/mod/worker.xml
index ceec210344..c039209071 100644
--- a/docs/manual/mod/worker.xml
+++ b/docs/manual/mod/worker.xml
@@ -42,7 +42,15 @@
MaxRequestWorkers, which
controls the maximum total number of threads that may be
launched.
+
+ When built as a DSO module, it can be loaded with:
+
+
+LoadModule mpm_worker_module modules/mod_mpm_worker.so
+
+
+Multi-Processing Modules (MPMs)
Setting which addresses and ports Apache HTTP Server uses
How it Works
diff --git a/docs/manual/mpm.xml b/docs/manual/mpm.xml
index 03d1395186..f17098e7fb 100644
--- a/docs/manual/mpm.xml
+++ b/docs/manual/mpm.xml
@@ -140,7 +140,7 @@ two features.
for the MPM instead of by rebuilding the server.
- LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+ LoadModule mpm_event_module modules/mod_mpm_event.so
Attempting to LoadModule