You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pe...@locus.apache.org on 2000/12/03 04:13:06 UTC

cvs commit: httpd-docs-1.3/htdocs/manual/mod core.html

pepper      00/12/02 19:13:06

  Modified:    htdocs/manual/mod core.html
  Log:
  Clean up some odd wording re: quote-mark.
  Clarify KeepAlive's max-requests parameter.
  Update Satisfy's See also link to go directly to mod_access.html#allow .
  
  Revision  Changes    Path
  1.181     +11 -7     httpd-docs-1.3/htdocs/manual/mod/core.html
  
  Index: core.html
  ===================================================================
  RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/core.html,v
  retrieving revision 1.180
  retrieving revision 1.181
  diff -u -r1.180 -r1.181
  --- core.html	2000/11/22 03:24:48	1.180
  +++ core.html	2000/12/03 03:13:06	1.181
  @@ -818,8 +818,8 @@
   using the <CODE>ErrorDocument</CODE> directive, which is followed by
   the HTTP response code and a message or URL.
   
  -<P><EM>Messages</EM> in this context begin with a single quote
  -(<CODE>"</CODE>), which does not form part of the message itself.
  +<P><EM>Messages</EM> in this context begin with a single double-quote
  +character (<CODE>"</CODE>), which does not form part of the message itself.
   Apache will sometimes offer additional information regarding the
   problem/error.
   
  @@ -1324,10 +1324,12 @@
   chunked encoding will be used in order to send content of unknown
   length over persistent connections.</p>
   
  -<P><STRONG>Apache 1.1</STRONG>: Set <EM>max-requests</EM>
  +<P><STRONG>Apache 1.1 only</STRONG>: Set <EM>max-requests</EM>
   to the maximum number of requests you want Apache to entertain per
  -request. A limit is imposed to prevent a client from hogging your
  -server resources. Set this to <CODE>0</CODE> to disable support.
  +connection. A limit is imposed to prevent a client from hogging your
  +server resources. Set this to <CODE>0</CODE> to disable support. In
  +Apache 1.2 and 1.3, this is controlled through the
  +MaxKeepAliveRequests directive instead.</p>
   
   <p>See also  <A
   HREF="#maxkeepaliverequests">MaxKeepAliveRequests</A>.</P>
  @@ -2031,8 +2033,10 @@
   allowed per connection when <A HREF="#keepalive">KeepAlive</A> is
   on. If it is set to "<CODE>0</CODE>", unlimited requests will be
   allowed. We recommend that this setting be kept to a high value for
  -maximum server performance.</P><HR>
  +maximum server performance. In Apache 1.1, this is controlled through an option to the KeepAlive directive.</P>
   
  +<HR>
  +
   <H2><A NAME="maxrequestsperchild">MaxRequestsPerChild directive</A></H2>
   <!--%plaintext &lt;?INDEX {\tt MaxRequestsPerChild} directive&gt; -->
   <A
  @@ -2694,7 +2698,7 @@
   clients from particular addresses in without prompting for a password.
   <P>
   See also <A HREF="#require">Require</A> and 
  -<A HREF="mod_access.html">mod_access</A>.
  +<A HREF="mod_access.html#allow">Allow</A>.
   
   <P><HR>