Protect apache2 server-status handler by password
- by Shiplu
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?