Protect apache2 server-status handler by password

Posted by Shiplu on Server Fault See other posts from Server Fault or by Shiplu
Published on 2012-04-09T08:59:22Z Indexed on 2012/04/09 11:32 UTC
Read the original article Hit count: 402

Filed under:
|
|

In my apache2 server I access /server-status to check my current status of the web-server. I found that mods-available/status.conf contains the snippets that is responsible for showing status.

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

My question is how can i make it available not only for localhost but also for remote host with authentication?

© Server Fault or respective owner

Related posts about apache2

Related posts about debian