OSDN Git Service

add Apache 2.2.13
[redminele/redminele.git] / apache / conf / extra / httpd-info.conf
1 #\r
2 # Get information about the requests being processed by the server\r
3 # and the configuration of the server.\r
4 #\r
5 # Required modules: mod_status (for the server-status handler),\r
6 #                   mod_info (for the server-info handler)\r
7 \r
8 #\r
9 # Allow server status reports generated by mod_status,\r
10 # with the URL of http://servername/server-status\r
11 # Change the ".localhost" to match your domain to enable.\r
12 \r
13 <Location /server-status>\r
14     SetHandler server-status\r
15     Order deny,allow\r
16     Deny from all\r
17     Allow from .localhost\r
18 </Location>\r
19 \r
20 #\r
21 # ExtendedStatus controls whether Apache will generate "full" status\r
22 # information (ExtendedStatus On) or just basic information (ExtendedStatus\r
23 # Off) when the "server-status" handler is called. The default is Off.\r
24 #\r
25 #ExtendedStatus On\r
26 \r
27 #\r
28 # Allow remote server configuration reports, with the URL of\r
29 #  http://servername/server-info (requires that mod_info.c be loaded).\r
30 # Change the ".localhost" to match your domain to enable.\r
31 #\r
32 <Location /server-info>\r
33     SetHandler server-info\r
34     Order deny,allow\r
35     Deny from all\r
36     Allow from .localhost\r
37 </Location>\r