Hello,
My new system admin has an IP that changes continuously.
My httpd.conf has this:
The problem is his IP changes all the time, so I will have to find a different way to give him access to /serverstatus. Is there a way to simply protect this page with a password instead of restricting it to an IP address? This would help me if I'm on the road and I want to check out the /serverstatus page.
My new system admin has an IP that changes continuously.
My httpd.conf has this:
Code:
ExtendedStatus On
<Location /serverstatus>
allow from 1.2.3.4
deny from all
SetHandler server-status
</Location>
The problem is his IP changes all the time, so I will have to find a different way to give him access to /serverstatus. Is there a way to simply protect this page with a password instead of restricting it to an IP address? This would help me if I'm on the road and I want to check out the /serverstatus page.