diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2014-05-22 10:28:44 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2014-05-22 10:28:44 +0200 |
commit | afe4150b04846f8da24e47df51a714c0a91b73cc (patch) | |
tree | e7b29d6c6c4e79d0374029b4ee0ecab688f4093a /2.4/conf | |
parent | Revert runtime dir location changes as /run only exists on Linux systems (diff) | |
download | apache-afe4150b04846f8da24e47df51a714c0a91b73cc.tar.gz apache-afe4150b04846f8da24e47df51a714c0a91b73cc.tar.bz2 apache-afe4150b04846f8da24e47df51a714c0a91b73cc.zip |
Wrap some IfDefine around 00_mod_autoindex.conf so people can disable it (bug #493020).
Diffstat (limited to '2.4/conf')
-rw-r--r-- | 2.4/conf/modules.d/00_mod_autoindex.conf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/2.4/conf/modules.d/00_mod_autoindex.conf b/2.4/conf/modules.d/00_mod_autoindex.conf index f3acf0f..10bf483 100644 --- a/2.4/conf/modules.d/00_mod_autoindex.conf +++ b/2.4/conf/modules.d/00_mod_autoindex.conf @@ -1,4 +1,6 @@ <IfModule autoindex_module> +<IfDefine !NO_AUTOINDEX_CONF> + <IfModule alias_module> # We include the /icons/ alias for FancyIndexed directory listings. If # you do not use FancyIndexing, you may comment this out. @@ -77,6 +79,7 @@ HeaderName HEADER.html # IndexIgnore is a set of filenames which directory indexing should ignore # and not include in the listing. Shell-style wildcarding is permitted. IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t +</IfDefine> </IfModule> # vim: ts=4 filetype=apache |