From 2ebc402da09f6a601fa684a5571fe57e75403e1c Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Sun, 30 Jan 2005 01:59:44 +0000 Subject: [PATCH] As per bug 33290, we probably don't want a here. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@149092 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_info.html.en | 18 +++++++++++++++++- docs/manual/mod/mod_info.xml | 16 ++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/docs/manual/mod/mod_info.html.en b/docs/manual/mod/mod_info.html.en index 3b70e3ddc0..ed1b448165 100644 --- a/docs/manual/mod/mod_info.html.en +++ b/docs/manual/mod/mod_info.html.en @@ -43,6 +43,22 @@ configuration </Location>

+

You may wish to use mod_access inside the + <Location> + directive to limite access to your server configuration + information:

+ +

+ <Location /server-info>
+ + SetHandler server-info
+ Order deny,allow
+ Deny from all
+ Allow from yourcompany.com
+
+ </Location> +

+

Once configured, the server information is obtained by accessing http://your.host.example.com/server-info

@@ -173,6 +189,6 @@ information displayed by the server-info handler  ja  |  ko 

\ No newline at end of file diff --git a/docs/manual/mod/mod_info.xml b/docs/manual/mod/mod_info.xml index 57fc6f2a80..59dd6ae0b2 100644 --- a/docs/manual/mod/mod_info.xml +++ b/docs/manual/mod/mod_info.xml @@ -41,6 +41,22 @@ configuration </Location> +

You may wish to use mod_access inside the + Location + directive to limite access to your server configuration + information:

+ + + <Location /server-info>
+ + SetHandler server-info
+ Order deny,allow
+ Deny from all
+ Allow from yourcompany.com
+
+ </Location> +
+

Once configured, the server information is obtained by accessing http://your.host.example.com/server-info

-- 2.50.1