apache: mod_status

hyp0r

Registered
I've enabled mod_status in my apache httpd.conf file, but when I try to access http://localhost/server-status I get a 403 Forbidden error message. I was wondering what I might be doing wrong. The relative information from my httpd.conf is:

<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>
 
Back
Top