Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change 
notification.

The following page has been changed by megaspaz:
http://wiki.apache.org/httpd/Recipes/BypassAuthenticationOrAuthorizationRequirements

The comment on the change is:
Entry is redundant. Satisfy Any already covered earlier in this page.

------------------------------------------------------------------------------
  In this above example, the "Order allow,deny" line blocks access by default, 
the "Allow" directive allows the LAN, and the "Satisfy all" directive requires 
both LAN and password.
  
  
- The following recipe incorporates the "Satisfy Any", "Allow", and "Order" 
directives to allow example.net, example.com and XHTML validation via 
example.co.uk, and the web-developer to access the site without being prompted 
for a password. Everyone else is prompted for a password.  This is especially 
useful for webmasters while working on a site. 
-  
- 
- {{{AuthName "example.com Administration"
- AuthUserFile /path/to/.htpasswd
- AuthType basic
- Require valid-user
- Order deny,allow
- Deny from all
- Allow from example.com example.net example.co.uk
- Satisfy Any
- }}}
- 
- 
  See the Apache Docs for further information on the 
[http://httpd.apache.org/docs/2.2/mod/core.html#satisfy Satisfy] directive.
  

Reply via email to