Apache Authentication - ApacheCon 2005
Access Control- Allow, or deny, from particular addresses
<Location /server-status>
Order deny,allow
Deny from all
Allow from apacheadmin.com
</Location>
| | |
- These are applied as a series of filters. Everyone is excluded, then apacheadmin.com is let in. The other way around, it would be ineffectual.
- Alternately,
Order allow,deny
Allow from all
Deny from something.com
| | |
|
|