From 6ea685234e9b374ac1c2734a14aebedf8ea14e47 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Elan=20Ruusam=C3=A4e?= Date: Thu, 27 Dec 2007 01:16:17 +0000 Subject: [PATCH] - add Changed files: apache1-defaultindex.conf -> 1.1 apache1-manual.conf -> 1.1 --- apache1-defaultindex.conf | 15 +++++++++++++++ apache1-manual.conf | 16 ++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 apache1-defaultindex.conf create mode 100644 apache1-manual.conf diff --git a/apache1-defaultindex.conf b/apache1-defaultindex.conf new file mode 100644 index 0000000..99e4188 --- /dev/null +++ b/apache1-defaultindex.conf @@ -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/ + + Options Indexes FollowSymLinks MultiViews + AllowOverride None + + Order allow,deny + Allow from all + + diff --git a/apache1-manual.conf b/apache1-manual.conf new file mode 100644 index 0000000..c9bbbb5 --- /dev/null +++ b/apache1-manual.conf @@ -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/ + + + Options Indexes FollowSymlinks MultiViews + AllowOverride None + + Order allow,deny + Allow from all + + -- 2.44.0