2

I'm running a LAMP stack on Raspbian and I'd like to see the apache server-status page. I've checked that mod-status is enabled and I've added a directive in apache2.conf to allow anyone to see the page while I test it:

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

When I navigate to the page I'm still getting a 'forbidden' warning. What am I missing?

User98764431
5791 gold badge19 silver badges33 bronze badges
asked Apr 11, 2014 at 9:48

1 Answer 1

2

Remove this line:

Deny from all

This should make the status page available to anyone.

When you want to restrict the IP addresses that can access the status page, put that line back. On the Allow line, replace all with the IP address of your PC/laptop.

Will
3713 silver badges16 bronze badges
answered Apr 13, 2014 at 8:20

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.