Return-Path: Delivered-To: apmail-httpd-docs-archive@httpd.apache.org Received: (qmail 91854 invoked by uid 500); 6 Apr 2003 17:54:11 -0000 Mailing-List: contact docs-help@httpd.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: docs@httpd.apache.org Delivered-To: mailing list docs@httpd.apache.org Received: (qmail 91836 invoked by uid 500); 6 Apr 2003 17:54:10 -0000 Delivered-To: apmail-apache-docs@apache.org Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Date: 6 Apr 2003 17:54:10 -0000 Message-ID: <20030406175410.66865.qmail@icarus.apache.org> From: slive@apache.org To: httpd-docs-1.3-cvs@apache.org Subject: cvs commit: httpd-docs-1.3/htdocs/manual/mod core.html.en X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N slive 2003/04/06 10:54:10 Modified: htdocs/manual/mod core.html.en Log: Add a little info on AddModule ordering, stolen from src/Configuration.tmpl. PR: 18337 Revision Changes Path 1.249 +10 -1 httpd-docs-1.3/htdocs/manual/mod/core.html.en Index: core.html.en =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/core.html.en,v retrieving revision 1.248 retrieving revision 1.249 diff -u -d -b -u -r1.248 -r1.249 --- core.html.en 10 Mar 2003 13:39:15 -0000 1.248 +++ core.html.en 6 Apr 2003 17:54:09 -0000 1.249 @@ -245,7 +245,7 @@ method Apache will use. Not all methods are available on all platforms, since the suite of methods is determined at compile-time. For a list of which methods are available for - your particular build, the httpd -L command line + your particular build, the httpd -V command line option will list them out.

The compile time flags -D @@ -430,6 +430,15 @@

AddModule mod_include.c
+ +

The ordering of AddModule lines is important. + Modules are listed in reverse priority order --- the ones that come + later can override the behavior of those that come earlier. This + can have visible effects; for instance, if UserDir followed Alias, + you couldn't alias out a particular user's home directory. For + more information and a recommended ordering, see + src/Configuration.tmpl in the Apache source + distribution.

See also: ClearModuleList and