You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2019/02/15 09:02:16 UTC

svn commit: r1853625 - /httpd/httpd/branches/2.4.x/docs/manual/mod/mod_reqtimeout.xml

Author: jailletc36
Date: Fri Feb 15 09:02:16 2019
New Revision: 1853625

URL: http://svn.apache.org/viewvc?rev=1853625&view=rev
Log:
Add directive name, so that quickreference.xsl can extract default value correctly.
Add a summary and explain at which loglevel the module operates. (related to PR 59088)

r1827780, r1853624 in trunk

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_reqtimeout.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_reqtimeout.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_reqtimeout.xml?rev=1853625&r1=1853624&r2=1853625&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_reqtimeout.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_reqtimeout.xml Fri Feb 15 09:02:16 2019
@@ -30,6 +30,21 @@
 <identifier>reqtimeout_module</identifier>
 <compatibility>Available in Apache HTTPD 2.2.15 and later</compatibility>
 
+<summary>
+    <p>This module provides a convenient way to set timeouts and minimum data
+    rates for receiving requests. Should a timeout occur or a data rate be
+    to low, the corresponding connection will be closed by the server.</p>
+
+    <p>This is logged at <directive module="core">LogLevel</directive>
+    <code>info</code>.</p>
+    
+    <p>If needed, the <directive module="core">LogLevel</directive> directive
+    can be tweaked to explicitly log it:</p>
+    <highlight language="config">
+      LogLevel reqtimeout:info
+    </highlight>
+</summary>
+
 <section id="examples"><title>Examples</title>
 
     <ol>
@@ -86,7 +101,7 @@
 [header=<var>timeout</var>[-<var>maxtimeout</var>][,MinRate=<var>rate</var>]
 [body=<var>timeout</var>[-<var>maxtimeout</var>][,MinRate=<var>rate</var>]
 </syntax>
-<default>header=20-40,MinRate=500 body=20,MinRate=500</default>
+<default>RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500</default>
 <contextlist><context>server config</context><context>virtual host</context>
 </contextlist>
 <compatibility>Available in version 2.2.15 and later; defaulted to disabled in