SOURCES: apache1-manual.conf (NEW), apache1-defaultindex.conf (NEW...
glen
glen at pld-linux.org
Thu Dec 27 02:16:22 CET 2007
Author: glen Date: Thu Dec 27 01:16:22 2007 GMT
Module: SOURCES Tag: HEAD
---- Log message:
- add
---- Files affected:
SOURCES:
apache1-manual.conf (NONE -> 1.1) (NEW), apache1-defaultindex.conf (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: SOURCES/apache1-manual.conf
diff -u /dev/null SOURCES/apache1-manual.conf:1.1
--- /dev/null Thu Dec 27 02:16:22 2007
+++ SOURCES/apache1-manual.conf Thu Dec 27 02:16:17 2007
@@ -0,0 +1,16 @@
+# Sets up default html for Apache
+
+# This Alias will project the on-line documentation tree under /manual/
+# even if you change the DocumentRoot. Comment it if you don't want to
+# provide access to the on-line documentation.
+
+Alias /manual/ /usr/share/apache1/manual/
+
+<Directory "/usr/share/apache1/manual">
+ Options Indexes FollowSymlinks MultiViews
+ AllowOverride None
+ <IfModule mod_access.c>
+ Order allow,deny
+ Allow from all
+ </IfModule>
+</Directory>
================================================================
Index: SOURCES/apache1-defaultindex.conf
diff -u /dev/null SOURCES/apache1-defaultindex.conf:1.1
--- /dev/null Thu Dec 27 02:16:22 2007
+++ SOURCES/apache1-defaultindex.conf Thu Dec 27 02:16:17 2007
@@ -0,0 +1,15 @@
+# Sets up default html for Apache
+
+# This directive allows us to have Apache's default start page
+# in /apache-default/, but still have / go to the right place.
+RedirectMatch ^/$ /apache-default/
+
+Alias /apache-default/ /usr/share/apache1/html/
+<Directory "/usr/share/apache1/html">
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride None
+ <IfModule mod_access.c>
+ Order allow,deny
+ Allow from all
+ </IfModule>
+</Directory>
================================================================
More information about the pld-cvs-commit
mailing list