summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2002-06-13 18:39:04 +0000
committerBradley Nicholes <bnicholes@apache.org>2002-06-13 18:39:04 +0000
commitd2f37343af4bbaab5c9e80c253be5f4076eb12ae (patch)
tree069e9a8b721c8f04d7c57051be08b2fd12f21080
parent3081601dfeccb57b788e21ae921aba514dd66020 (diff)
downloadhttpd-d2f37343af4bbaab5c9e80c253be5f4076eb12ae.tar.gz
Enabled Server-Side Includes by default in the /manual directory so that all
headers and footers will be included correctly in the documentation pages. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95650 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/conf/httpd-nw.conf3
-rw-r--r--docs/conf/httpd-std.conf.in3
-rw-r--r--docs/conf/httpd-win.conf3
3 files changed, 6 insertions, 3 deletions
diff --git a/docs/conf/httpd-nw.conf b/docs/conf/httpd-nw.conf
index b953b92b77..ea0b8e13a9 100644
--- a/docs/conf/httpd-nw.conf
+++ b/docs/conf/httpd-nw.conf
@@ -441,7 +441,8 @@ Alias /icons/ "@@ServerRoot@@/icons/"
Alias /manual "@@ServerRoot@@/manual"
<Directory "@@ServerRoot@@/manual">
- Options Indexes FollowSymLinks MultiViews
+ Options Indexes FollowSymLinks MultiViews IncludesNoExec
+ AddOutputFilter Includes html
AllowOverride None
Order allow,deny
Allow from all
diff --git a/docs/conf/httpd-std.conf.in b/docs/conf/httpd-std.conf.in
index 7374ca470c..5c145478c4 100644
--- a/docs/conf/httpd-std.conf.in
+++ b/docs/conf/httpd-std.conf.in
@@ -540,7 +540,8 @@ Alias /icons/ "@exp_iconsdir@/"
Alias /manual "@exp_manualdir@"
<Directory "@exp_manualdir@">
- Options Indexes FollowSymLinks MultiViews
+ Options Indexes FollowSymLinks MultiViews IncludesNoExec
+ AddOutputFilter Includes html
AllowOverride None
Order allow,deny
Allow from all
diff --git a/docs/conf/httpd-win.conf b/docs/conf/httpd-win.conf
index 4053e67735..1a535be395 100644
--- a/docs/conf/httpd-win.conf
+++ b/docs/conf/httpd-win.conf
@@ -456,7 +456,8 @@ Alias /icons/ "@@ServerRoot@@/icons/"
Alias /manual "@@ServerRoot@@/manual"
<Directory "@@ServerRoot@@/manual">
- Options Indexes FollowSymLinks MultiViews
+ Options Indexes FollowSymLinks MultiViews IncludesNoExec
+ AddOutputFilter Includes html
AllowOverride None
Order allow,deny
Allow from all