]> git.pld-linux.org Git - packages/apache.git/blob - apache-mod_status.conf
- little fix, to see is there any change to work with POST requests
[packages/apache.git] / apache-mod_status.conf
1 # $Id$
2 LoadModule status_module        modules/mod_status.so
3
4 <IfModule mod_status.c>
5
6 # Allow server status reports, with the URL of http://servername/server-status
7 # Change the ".your_domain.com" to match your domain to enable.
8
9 <Location /server-status>
10         SetHandler server-status
11
12         order deny,allow
13         deny from all
14         allow from 127.0.0.1
15 </Location>
16
17 </IfModule>
18 # vim: filetype=apache ts=4 sw=4 et
This page took 0.049984 seconds and 3 git commands to generate.