From: Rich Bowen Date: Thu, 2 Apr 2026 19:20:12 +0000 (+0000) Subject: Resolves bz64903 - Clarifies lower limit for various directives. X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=94096a775bb815c2925387beb853c32b7f9ef3ad;p=thirdparty%2Fapache%2Fhttpd.git Resolves bz64903 - Clarifies lower limit for various directives. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1932762 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mpm_common.xml b/docs/manual/mod/mpm_common.xml index be58a60ff8..6cdca18696 100644 --- a/docs/manual/mod/mpm_common.xml +++ b/docs/manual/mod/mpm_common.xml @@ -597,6 +597,10 @@ spikes

mpmt_os2 works similar to mpm_netware. For mpmt_os2 the default value is 5.

+ +

The value of MinSpareThreads must be at + least 1. Values less than 1 will be automatically increased to 1 + and a warning will be logged.

MaxSpareThreads StartServers @@ -762,6 +766,10 @@ Apache HTTP Server even further past this limit, you will need to modify the value of MAX_SERVER_LIMIT in the mpm source file and rebuild the server.

+ +

The value of ServerLimit must be at least + 1. Values less than 1 will be automatically increased to 1 and a + warning will be logged.

Stopping and Restarting Apache HTTP Server @@ -790,6 +798,11 @@ Apache HTTP Server event default to StartServers 3; prefork defaults to 5; mpmt_os2 defaults to 2.

+ +

The value of StartServers must be at least + 1. Values less than 1 will be automatically increased to 1 and a + warning will be logged. On mpmt_os2, a value of 0 + is also accepted; values less than 0 will be increased to 1.

@@ -863,6 +876,10 @@ per child process will need to modify the value of MAX_THREAD_LIMIT in the mpm source file and rebuild the server.

+ +

The value of ThreadLimit must be at least + 1. Values less than 1 will be automatically increased to 1 and a + warning will be logged.

@@ -895,6 +912,10 @@ per child process higher value is configured, it will be automatically reduced at start-up and a warning will be logged. The relationship between these 2 directives is explained in ThreadLimit.

+ +

The value of ThreadsPerChild must be at + least 1. Values less than 1 will be automatically increased to 1 + and a warning will be logged.