Return-Path: Mailing-List: contact apache-docs-help@apache.org; run by ezmlm Delivered-To: mailing list apache-docs@apache.org Received: (qmail 80447 invoked by uid 500); 3 Dec 2000 03:19:20 -0000 Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Received: (qmail 80444 invoked by uid 1215); 3 Dec 2000 03:19:20 -0000 Date: 3 Dec 2000 03:19:20 -0000 Message-ID: <20001203031920.80443.qmail@locus.apache.org> From: pepper@locus.apache.org To: httpd-docs-1.3-cvs@apache.org Subject: cvs commit: httpd-docs-1.3/htdocs/manual env.html pepper 00/12/02 19:19:19 Modified: htdocs/manual env.html Log: Fix several typos around 'referrer' and 'referral' being misspelled. Revision Changes Path 1.14 +6 -6 httpd-docs-1.3/htdocs/manual/env.html Index: env.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/env.html,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- env.html 2000/10/23 22:02:35 1.13 +++ env.html 2000/12/03 03:19:19 1.14 @@ -63,7 +63,7 @@ to be set on a per-request basis based on characteristics of particular requests. For example, a variable could be set only when a specific browser (User-Agent) is making a request, or only when a specific -Referer header is found. Even more flexibility is available through the +Referrer header is found. Even more flexibility is available through the mod_rewrite's RewriteRule which uses the [E=...] option to set environment variables.

@@ -117,7 +117,7 @@

Access to the server can be controlled based on the value of environment variables using the allow from env= and -deny from env= directives. In combination with +deny from env= directives. In combination with SetEnvIf, this allows for flexible control of access to the server based on characteristics of the client. For example, you can use these directives to deny access to a particular browser @@ -241,13 +241,13 @@ called /web/images.

  -    SetEnvIf Referer "^http://www.example.com/" local_referal
  -    # Allow browsers that do not send Referer info
  -    SetEnvIf Referer "^$" local_referal
  +    SetEnvIf Referrer "^http://www.example.com/" local_referral
  +    # Allow browsers that do not send Referrer info
  +    SetEnvIf Referrer "^$" local_referral
       <Directory /web/images>
          Order Deny,Allow
          Deny from all
  -       Allow from env=local_referal
  +       Allow from env=local_referral
       </Directory>