File apache2-mod_status.conf of Package apache2.10087
#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
#
# see http:///httpd.apache.org/docs/2.4/mod/mod_status.html
#
<IfModule mod_status.c>
<Location /server-status>
SetHandler server-status
# See /usr/share/doc/packages/apache2/README-access_compat.txt
<IfModule mod_access_compat.c>
Order deny,allow
Deny from all
Allow from localhost 127.0.0.1
</IfModule>
<IfModule !mod_access_compat.c>
Require local
</IfModule>
</Location>
</IfModule>