]> granicus.if.org Git - apache/commitdiff
PR: 6470,6450,6218,6216,6478
authorJoshua Slive <slive@apache.org>
Sat, 9 Sep 2000 18:19:55 +0000 (18:19 +0000)
committerJoshua Slive <slive@apache.org>
Sat, 9 Sep 2000 18:19:55 +0000 (18:19 +0000)
Submitted by: pepper@reppep.com
Reviewed by: Joshua Slive
Grammar fixes from the bug database.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86189 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/misc/FAQ-H.html
docs/manual/misc/perf-tuning.html
docs/manual/mod/core.html
docs/manual/mod/mod_alias.html
docs/manual/vhosts/name-based.html
docs/manual/vhosts/name-based.html.en

index 3369ec9c3dc15bd9603aa6c1b2c55080c6c4701e..778884c74df46bdf0b927c40d270049f6af0f038 100644 (file)
@@ -31,7 +31,7 @@
   <!--#include virtual="header.html" -->
   <H1 ALIGN="CENTER">Apache Server Frequently Asked Questions</H1>
   <P>
-  $Revision: 1.1 $ ($Date: 1999/06/24 15:02:52 $)
+  $Revision: 1.2 $ ($Date: 2000/09/09 18:19:54 $)
   </P>
   <P>
   The latest version of this FAQ is always available from the main
       </STRONG>
      </A>
   <P>
-  You can't! The reason is: First, case translations for arbitrary
-  length URLs cannot be done <EM>via</EM> regex patterns and
-  corresponding substitutions.  One need a per-character pattern like
-  sed/Perl <SAMP>tr|..|..|</SAMP> feature.  Second, just making URLs
-  always upper or lower case will not resolve the complete problem of
-  case-INSENSITIVE URLs, because actually the URLs had to be rewritten
-  to the correct case-variant residing on the filesystem because in
-  later processing Apache needs to access the file.  And Unix
-  filesystem is always case-SENSITIVE.
+  You can't! The reasons are: first, that, case translations for
+  arbitrary length URLs cannot be done <EM>via</EM> regex patterns and
+  corresponding substitutions.  One needs a per-character pattern like
+  the sed/Perl <SAMP>tr|..|..|</SAMP> feature.  Second, just making
+  URLs always upper or lower case does not solve the whole problem of
+  case-INSENSITIVE URLs, because URLs actually have to be rewritten to
+  the correct case-variant for the file residing on the filesystem
+  in order to allow Apache to access the file.  And
+  the Unix filesystem is always case-SENSITIVE.
   </P>
   <P>
-  But there is a module named <CODE>mod_speling.c</CODE> (yes, it is named
-  this way!) out there on the net. Try this one.
+  But there is a module named <CODE><A
+  HREF="../mod/mod_speling.html">mod_speling.c</A></CODE> in the
+  Apache distribution. Try this module to help correct people who use
+  mis-cased URLs.
   </P>
   <HR>
  </LI>
index b32ad7c92f219bc66a114dc53807a270e557f663..c9c1348c804881fe7fd464baed195c61c65b47f2 100644 (file)
@@ -359,7 +359,7 @@ mutex.  Unfortunately SysV-style semaphores have some bad side-effects.
 One is that it's possible Apache will die without cleaning up the semaphore
 (see the <CODE>ipcs(8)</CODE> man page).  The other is that the semaphore
 API allows for a denial of service attack by any CGIs running under the
-same uid as the webserver (<EM>i.e.</EM>, all CGIs unless you use something
+same uid as the webserver (<EM>i.e.</EM>, all CGIs, unless you use something
 like suexec or cgiwrapper).  For these reasons this method is not used
 on any architecture except IRIX (where the previous two are prohibitively
 expensive on most IRIX boxes).
@@ -446,7 +446,7 @@ The TCP specification does not state that the FIN_WAIT_2 state has a
 timeout, but it doesn't prohibit it.  On systems without the timeout,
 Apache 1.2 induces many sockets stuck forever in the FIN_WAIT_2 state.
 In many cases this can be avoided by simply upgrading to the latest
-TCP/IP patches supplied by the vendor, in cases where the vendor has
+TCP/IP patches supplied by the vendor.  In cases where the vendor has
 never released patches (<EM>i.e.</EM>,  SunOS4 -- although folks with a source
 license can patch it themselves) we have decided to disable this feature.
 
@@ -799,8 +799,8 @@ but don't seem worth the effort.
 
 There are
 <A HREF="http://www.arctic.org/~dgaudet/apache/1.3/">
-several performance patches available for 1.3.</A>  But they may
-be slightly out of date by the time Apache 1.3.0 has been released,
+several performance patches available for 1.3.</A>  Although they may
+not apply cleanly to the current version,
 it shouldn't be difficult for someone with a little C knowledge to
 update them.  In particular:
 
@@ -856,8 +856,8 @@ depending on the operating system.
 <P>Apache's core code is already multithread aware, and Apache version
 1.3 is multithreaded on NT.  There have been at least two other experimental
 implementations of threaded Apache, one using the 1.3 code base on DCE,
-and one using a custom user-level threads package and the 1.0 code base,
-neither are available publically.  There is also an experimental port of
+and one using a custom user-level threads package and the 1.0 code base;
+neither is available publically.  There is also an experimental port of
 Apache 1.3 to <A HREF="http://www.mozilla.org/docs/refList/refNSPR/">
 Netscape's Portable Run Time</A>, which
 <A HREF="http://www.arctic.org/~dgaudet/apache/2.0/">is available</A>
index 78d4b610d2b7790ac2887c44737a937770f25367..3588077c9272f8948c8c3989a54c2545b5ca8177 100644 (file)
@@ -3393,7 +3393,7 @@ TransferLog logs/host.foo.com-access_log <BR>
 
 Each VirtualHost must correspond to a different IP address, different port
 number or a
-different host name for the server, in the latter case the server
+different host name for the server, in the former case the server
 machine must be configured to accept IP packets for multiple
 addresses. (If the machine does not have multiple network interfaces,
 then this can be accomplished with the <CODE>ifconfig alias</CODE>
index 0826842cde97486961f89691c90bb9d04732ed90..1295bd9e6d7afc6e9264791141696c538004eff5 100644 (file)
@@ -183,7 +183,7 @@ when used with .htaccess files or inside of &lt;Directory&gt; sections.
 <P>
 If no <EM>status</EM> argument is given, the redirect will be
 &quot;temporary&quot; (HTTP status 302). This indicates to the client that the
-resources is has moved temporarily. The <EM>status</EM>
+resource has moved temporarily. The <EM>status</EM>
 argument can be used to return other HTTP status codes:
 <P>
 <DL>
index 238cf5c7211c5dae45999b237bd8a85cc79dca86..ac5a8d063f3428c65a7b58efa981be6fb2da31c2 100644 (file)
@@ -78,7 +78,7 @@ are pointing to the IP address <SAMP>111.22.33.44</SAMP></P>
 directive then requests to that IP address will only ever be served
 by matching &lt;VirtualHost&gt;s.  The "main server" will
 <STRONG>never</STRONG> be served from the specified IP address.
-If you start to use virtual hosts you should stop to use the "main server"
+If you start to use virtual hosts you should stop using the "main server"
 as an independent server and rather use it as a place for
 configuration directives that are common for all your virtual hosts.
 In other words, you should add a &lt;VirtualHost&gt; section for
index 238cf5c7211c5dae45999b237bd8a85cc79dca86..ac5a8d063f3428c65a7b58efa981be6fb2da31c2 100644 (file)
@@ -78,7 +78,7 @@ are pointing to the IP address <SAMP>111.22.33.44</SAMP></P>
 directive then requests to that IP address will only ever be served
 by matching &lt;VirtualHost&gt;s.  The "main server" will
 <STRONG>never</STRONG> be served from the specified IP address.
-If you start to use virtual hosts you should stop to use the "main server"
+If you start to use virtual hosts you should stop using the "main server"
 as an independent server and rather use it as a place for
 configuration directives that are common for all your virtual hosts.
 In other words, you should add a &lt;VirtualHost&gt; section for