slive       00/11/03 18:36:14

  Modified:    htdocs/manual server-wide.html configuring.html
  Log:
  Minor content and spelling adjustments to two recently added docs.
  
  Revision  Changes    Path
  1.3       +6 -4      httpd-docs-1.3/htdocs/manual/server-wide.html
  
  Index: server-wide.html
  ===================================================================
  RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/server-wide.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- server-wide.html  2000/11/01 20:00:48     1.2
  +++ server-wide.html  2000/11/04 02:36:12     1.3
  @@ -15,7 +15,7 @@
   <!--#include virtual="header.html" -->
   <h1 align="center">Server-Wide Configuration</h1>
   
  -<p>This document explains some of the directives provided by
  +<p>This document explains some of the directives provided by the
   <a href="mod/core.html">core</A> server which are used to configure
   the basic operations of the server.</p>
   
  @@ -118,7 +118,9 @@
   more than 256 simultaneous requests may need to increase
   <code>MaxClients</code>, while sites with limited memory may need to
   decrease <code>MaxClients</code> to keep the server from thrashing
  -(swapping memory to disk and back).</p>
  +(swapping memory to disk and back).  More information about tuning
  +process creation is provided in the <a
  +href="misc/perf-tuning.html">performance hints</a> documentation.</p>
   
   <p>While the parent process is usually started as root under Unix
   in order to bind to port 80, the child processes are launched
  @@ -197,7 +199,7 @@
   <a href="mod/core.html#threadstacksize">ThreadStackSize</a><br>
   </td></tr></table>
   
  -<p>The <code>Limit</code>* directives are used to place limits
  +<p>The <code>LimitRequest</code>* directives are used to place limits
   on the amount of resources Apache will use in reading requests
   from clients.  By limiting these values, some kinds of denial
   of service attacks can be mitigated.</p>
  @@ -208,7 +210,7 @@
   resources used by CGI scripts and SSI exec commands.</p>
   
   <p>The <code>ThreadStackSize</code> directive is used only
  -on Netware to control the stock size.</p>
  +on Netware to control the stack size.</p>
   
   <!--#include virtual="footer.html" -->
   </BODY>
  
  
  
  1.6       +6 -8      httpd-docs-1.3/htdocs/manual/configuring.html
  
  Index: configuring.html
  ===================================================================
  RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/configuring.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- configuring.html  2000/10/23 21:57:58     1.5
  +++ configuring.html  2000/11/04 02:36:13     1.6
  @@ -1,7 +1,7 @@
   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
   <HTML>
   <HEAD>
  -<TITLE>Configuring Apache</TITLE>
  +<TITLE>Configuration Files</TITLE>
   </HEAD>
   
   <!-- Background white, links blue (unvisited), navy (visited), red (active) 
-->
  @@ -13,7 +13,7 @@
    ALINK="#FF0000"
   >
   <!--#include virtual="header.html" -->
  -<H1 ALIGN="CENTER">Configuring Apache</H1>
  +<H1 ALIGN="CENTER">Configuration Files</H1>
   
   <ul>
   <li><a href="#main">Main Configuration Files</a></li>
  @@ -78,8 +78,7 @@
   back-slash "\" may be used as the last character on a line to indicate
   that the directive continues onto the next line.  There must be no
   other characters or white space between the back-slash and the end of
  -the line.  To end a line with a literal back-slash, you can escape it
  -by preceding it with a second back-slash "\\".
  +the line.
   
   <P>Directives in the configuration files are case-insensitive, but
   arguments to directives are often case sensitive.  Lines which begin
  @@ -112,7 +111,7 @@
   functionality is included in the core server.  Extended features are
   available through <A HREF="mod/index-bytype.html">modules</A> which
   can be loaded into Apache.  By default, a <A
  -HREF="mod/directive-dict.html#Status">base</A> set of modules is
  +HREF="mod/module-dict.html#Status">base</A> set of modules is
   included in the server at compile-time.  If the server is compiled to
   use <A HREF="dso.html">dynamically loaded</A> modules, then modules
   can be compiled separately and added at any time using the <A
  @@ -190,9 +189,8 @@
   <CODE>.htaccess</CODE> files apply to the directory where you place
   the file, and all sub-directories.  The <CODE>.htaccess</CODE> files
   follow the same syntax as the main configuration files.  Since
  -<CODE>.htaccess</CODE> files are read on every request, rather than
  -only at server startup, changes made in these files take immediate
  -effect.
  +<CODE>.htaccess</CODE> files are read on every request, changes made
  +in these files take immediate effect.
   
   <P>To find which directives can be placed in <CODE>.htaccess</CODE>
   files, check the <A HREF="mod/directive-dict.html#Context">Context</A>
  
  
  

Reply via email to