On Tue, Apr 5, 2011 at 9:52 AM, Michael D. Berger <[email protected]
> wrote:
>
> <Location /server-status>
> SetHandler server-status
> Order deny,allow
> Deny from all
> Allow from 192.168.9.0/24 127.0.0.1
> </Location>
>
> I tried access from the local box as well as another box
> on 192.168.9.0/24 . I get 403.
>
The first thing I always try is removing/commenting the access control
directives, something like this:
<Location /server-status>
SetHandler server-status
# Order deny,allow
# Deny from all
# Allow from 192.168.9.0/24 127.0.0.1
</Location>
Then you will know if it is a problem with those directives or somewhere
else.
- Y