From: Christophe Jaillet Date: Fri, 15 Feb 2019 08:28:00 +0000 (+0000) Subject: Fix case in directive name, so that quickreference.xsl can extract default value... X-Git-Tag: 2.4.39~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0e56b9b9de17f43103a83baa73abb0de58661f9;p=thirdparty%2Fapache%2Fhttpd.git Fix case in directive name, so that quickreference.xsl can extract default value correctly. Add a note in ThreadsPerChild about the relationship with ThreadsLimit r1838958, r1853617 and r1853618 in trunk git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1853619 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mpm_common.xml b/docs/manual/mod/mpm_common.xml index 08e5a3e5b25..4dfcea9c808 100644 --- a/docs/manual/mod/mpm_common.xml +++ b/docs/manual/mod/mpm_common.xml @@ -272,7 +272,7 @@ in *BSDs.

A ratio between the number of (online) CPU cores and the number of listeners' buckets can be used to make Apache HTTP Server create num_cpu_cores / ratio listening buckets, each containing its - own Listen-ing socket(s) on the same port(s), and + own Listen-ing socket(s) on the same port(s), and then make each child handle a single bucket (with round-robin distribution of the buckets at children creation time).

@@ -329,8 +329,8 @@ in *BSDs. ListenBackLog Maximum length of the queue of pending connections -ListenBacklog backlog -ListenBacklog 511 +ListenBackLog backlog +ListenBackLog 511 server config eventworker preforkmpm_winnt @@ -810,6 +810,12 @@ per child process

The default value for ThreadsPerChild is 64 when used with mpm_winnt and 25 when used with the others.

+ +

The value of ThreadsPerChild can not exceed the + value of ThreadLimit. If a + 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.