summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenedikt Boehm <hollow@gentoo.org>2007-11-25 19:57:41 +0000
committerBenedikt Boehm <hollow@gentoo.org>2007-11-25 19:57:41 +0000
commit1321b08825afb47c41d554bf8423932d70fca474 (patch)
treec31f3f997f3421f47bf2fac4418e8b7b8288c04b /2.2/conf/modules.d
parentmove error log out of log_config file (diff)
downloadapache-1321b08825afb47c41d554bf8423932d70fca474.tar.gz
apache-1321b08825afb47c41d554bf8423932d70fca474.tar.bz2
apache-1321b08825afb47c41d554bf8423932d70fca474.zip
move 00_autoindex to 00_mod_autoindex
Diffstat (limited to '2.2/conf/modules.d')
-rw-r--r--2.2/conf/modules.d/00_mod_autoindex.conf (renamed from 2.2/conf/modules.d/00_autoindex.conf)24
1 files changed, 12 insertions, 12 deletions
diff --git a/2.2/conf/modules.d/00_autoindex.conf b/2.2/conf/modules.d/00_mod_autoindex.conf
index 80025f9..2512357 100644
--- a/2.2/conf/modules.d/00_autoindex.conf
+++ b/2.2/conf/modules.d/00_mod_autoindex.conf
@@ -1,15 +1,5 @@
-<IfModule alias_module>
<IfModule autoindex_module>
-# Directives controlling the display of server-generated directory listings.
-#
-# To see the listing of a directory, the Options directive for the
-# directory must include "Indexes", and the directory must not contain
-# a file matching those listed in the DirectoryIndex directive.
-
-# IndexOptions: Controls the appearance of server-generated directory
-# listings.
-IndexOptions FancyIndexing VersionSort
-
+<IfModule alias_module>
# We include the /icons/ alias for FancyIndexed directory listings. If
# you do not use FancyIndexing, you may comment this out.
Alias /icons/ "/var/www/localhost/icons/"
@@ -20,6 +10,17 @@ Alias /icons/ "/var/www/localhost/icons/"
Order allow,deny
Allow from all
</Directory>
+</IfModule>
+
+# Directives controlling the display of server-generated directory listings.
+#
+# To see the listing of a directory, the Options directive for the
+# directory must include "Indexes", and the directory must not contain
+# a file matching those listed in the DirectoryIndex directive.
+
+# IndexOptions: Controls the appearance of server-generated directory
+# listings.
+IndexOptions FancyIndexing VersionSort
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions. These are only displayed for
@@ -78,6 +79,5 @@ HeaderName HEADER.html
# and not include in the listing. Shell-style wildcarding is permitted.
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
</IfModule>
-</IfModule>
# vim: ts=4 filetype=apache