]> git.pld-linux.org Git - packages/apache1.git/commitdiff
- add
authorElan Ruusamäe <glen@pld-linux.org>
Thu, 27 Dec 2007 01:16:17 +0000 (01:16 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache1-defaultindex.conf -> 1.1
    apache1-manual.conf -> 1.1

apache1-defaultindex.conf [new file with mode: 0644]
apache1-manual.conf [new file with mode: 0644]

diff --git a/apache1-defaultindex.conf b/apache1-defaultindex.conf
new file mode 100644 (file)
index 0000000..99e4188
--- /dev/null
@@ -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>
diff --git a/apache1-manual.conf b/apache1-manual.conf
new file mode 100644 (file)
index 0000000..c9bbbb5
--- /dev/null
@@ -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>
This page took 0.095853 seconds and 4 git commands to generate.