]> git.pld-linux.org Git - packages/apache1.git/commitdiff
- /icons alias moved from mod_alias to mod_autoindex config
authorElan Ruusamäe <glen@pld-linux.org>
Wed, 26 Dec 2007 21:44:27 +0000 (21:44 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache1-mod_alias.conf -> 1.5
    apache1-mod_autoindex.conf -> 1.5

apache1-mod_alias.conf
apache1-mod_autoindex.conf

index ee988c4f00a5779854450366578d99e15dcbe8f4..e25f514a1ae5cf5e28eaa3618fcbfe64b3b5fe1e 100644 (file)
@@ -8,14 +8,6 @@
 # require it to be present in the URL.  So "/icons" isn't aliased in this
 # example, only "/icons/"..
 #
-Alias /icons/ "/home/services/apache/icons/"
-
-<Directory "/home/services/apache/icons">
-       Options Indexes MultiViews
-       AllowOverride None
-       Order allow,deny
-       Allow from all
-</Directory>
 
 Alias /manual/ "/usr/share/apache1-manual/"
 <Directory "/usr/share/apache1-manual">
index 2135f991b52e2e4d522cba2f8dde9cfd0f3388a7..464469a89731707395e6c0a2245f221e4be3bbbd 100644 (file)
@@ -1,6 +1,17 @@
 # $Id$
 LoadModule autoindex_module modules/mod_autoindex.so
 
+<IfModule mod_alias.c>
+       Alias /icons/ "/usr/share/apache-icons/"
+
+       <Directory "/usr/share/apache-icons">
+               Options Indexes MultiViews
+               AllowOverride None
+               Order allow,deny
+               Allow from all
+       </Directory>
+</IfModule>
+
 #
 # Directives controlling the display of server-generated directory listings.
 #
This page took 0.049318 seconds and 4 git commands to generate.