On Tue, Apr 5, 2011 at 9:52 AM, Michael D. Berger <m_d_berger_1...@yahoo.com > 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