From: Rich Bowen Date: Tue, 16 Jun 2026 14:23:25 +0000 (+0000) Subject: Link to MPM doc; Add LoadModule example for MPMs. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b98b8f68ca0c408fedb2f36492cbb4a53d93b5b4;p=thirdparty%2Fapache%2Fhttpd.git Link to MPM doc; Add LoadModule example for MPMs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1935408 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/event.xml b/docs/manual/mod/event.xml index f32fcb3bf9..bdefec117d 100644 --- a/docs/manual/mod/event.xml +++ b/docs/manual/mod/event.xml @@ -38,8 +38,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/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 ae87a46db3..5683977ffd 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