Commit 437d50b3 authored by Marc Slemko's avatar Marc Slemko
Browse files

Reduce default timeout to 300 seconds all around. Not reduced further

because there are still likely some odd snippets of code that don't
properly reset the timer.

Reviewed by: Dean Gaudet, Jim Jagielski, Randy Terbush


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77615 13f79535-47bb-0310-9956-ffa450edef68
parent 9910641a
Loading
Loading
Loading
Loading
+6 −4
Changes for docs/manual/mod/core.html: 6 added lines, 4 removed lines.
Original line number Diff line number Diff line
@@ -1146,7 +1146,7 @@ See also <A HREF="#minspareservers">MinSpareServers</A> and
<A name="timeout"><h2>TimeOut directive</h2></A>
<!--%plaintext &lt;?INDEX {\tt TimeOut} directive&gt; -->
<strong>Syntax:</strong> TimeOut <em>number</em><br>
<strong>Default:</strong> <code>TimeOut 1200</code><br>
<strong>Default:</strong> <code>TimeOut 300</code><br>
<strong>Context:</strong> server config<br>
<strong>Status:</strong> core<p>

@@ -1162,9 +1162,11 @@ wait for three things:
</OL>

We plan on making these separately configurable at some point down the
road.  1200 is very generous - you may consider turning it down to
something smaller if you find the server getting swamped by
half-completed connections from buggy browsers.
road.  The timer used to default to 1200 before 1.2, but has been
lowered to 300 which is still far more than necessary in most
situations.  It is not set any lower by default because there may
still be odd places in the code where the timer is not reset when
a packet is sent.

<p><hr>