Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 43013 invoked by uid 500); 15 Jun 2002 02:48:17 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 43002 invoked by uid 500); 15 Jun 2002 02:48:17 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 15 Jun 2002 02:48:16 -0000 Message-ID: <20020615024816.13083.qmail@icarus.apache.org> From: rbowen@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/docs/manual/mod core.html.en core.xml X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N rbowen 2002/06/14 19:48:16 Modified: docs/manual/mod core.html.en core.xml Log: Corrected typo, and added note about Directory sections applying to files accessed via a different path, such as via symlinks. Revision Changes Path 1.10 +9 -1 httpd-2.0/docs/manual/mod/core.html.en Index: core.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mod/core.html.en,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- core.html.en 14 Jun 2002 11:28:22 -0000 1.9 +++ core.html.en 15 Jun 2002 02:48:16 -0000 1.10 @@ -245,7 +245,7 @@ Unix shell-style matching. In a wild-card string, `?' matches any single character, and `*' matches any sequences of characters. You may also use `[]' character ranges. None of the wildcards - match a `/' character, so <Dircectory + match a `/' character, so <Directory /*/public_html> will not match /home/user/public_html, but <Directory /home/*/public_html> will match. Example:

@@ -254,6 +254,14 @@   Options Indexes FollowSymLinks
</Directory>
+ +
+

Be careful with the directory-path arguments: They have +to literally match the filesystem path which Apache uses to access the +files. Directives applied to a particular <Directory> will not +apply to files accessed from that same directory via a different path, +such as via different symbolic links.

+

Extended regular expressions can also be used, with the addition of the 1.17 +9 -1 httpd-2.0/docs/manual/mod/core.xml Index: core.xml =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mod/core.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- core.xml 14 Jun 2002 11:28:22 -0000 1.16 +++ core.xml 15 Jun 2002 02:48:16 -0000 1.17 @@ -391,7 +391,7 @@ Unix shell-style matching. In a wild-card string, `?' matches any single character, and `*' matches any sequences of characters. You may also use `[]' character ranges. None of the wildcards - match a `/' character, so <Dircectory + match a `/' character, so <Directory /*/public_html> will not match /home/user/public_html, but <Directory /home/*/public_html> will match. Example:

@@ -400,6 +400,14 @@   Options Indexes FollowSymLinks
</Directory>
+ + +

Be careful with the directory-path arguments: They have +to literally match the filesystem path which Apache uses to access the +files. Directives applied to a particular <Directory> will not +apply to files accessed from that same directory via a different path, +such as via different symbolic links.

+

Extended regular expressions can also be used, with the addition of the