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
    
      

Index
Back to mod_authn_dbi
Forward to Allow and Deny

ApacheCon 2005 : Apache Authentication - Slide #28 of 45