brian       96/12/21 20:39:57

  Modified:    htdocs/manual/mod  core.html
  Log:
  Clarify meaning of Timeout.
  
  Revision  Changes    Path
  1.22      +16 -6     apache/htdocs/manual/mod/core.html
  
  Index: core.html
  ===================================================================
  RCS file: /export/home/cvs/apache/htdocs/manual/mod/core.html,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -C3 -r1.21 -r1.22
  *** core.html 1996/12/12 01:09:57     1.21
  --- core.html 1996/12/22 04:39:56     1.22
  ***************
  *** 1101,1112 ****
    <strong>Context:</strong> server config<br>
    <strong>Status:</strong> core<p>
    
  ! The TimeOut directive sets the maximum time that the server will wait
  ! for the receipt of a request and the completion of a request, in seconds.
  ! So if it takes more than TimeOut seconds for a client to send a request or
  ! receive a response, the server will break off the connection. Thus TimeOut
  ! limits the maximum a transfer can take; for large files, and slow networks
  ! transfer times can be large.
    <p><hr>
    
    <A name="user"><h2>User directive</h2></A>
  --- 1101,1122 ----
    <strong>Context:</strong> server config<br>
    <strong>Status:</strong> core<p>
    
  ! The TimeOut directive currently defines the amount of time Apache will
  ! wait for three things:
  ! 
  ! <OL>
  !   <LI>The total amount of time it takes to receive a GET request.
  !   <LI>The amount of time between receipt of TCP packets on a POST or
  !       PUT request.
  !   <LI>The amount of time between ACKs on transmissions of TCP packets 
  !       in responses.
  ! </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.
  ! 
    <p><hr>
    
    <A name="user"><h2>User directive</h2></A>
  
  
  

Reply via email to