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/PasswordBasicAuth

The comment on the change is:
Deleted selection since it's covered already in the Bypass recipe.

------------------------------------------------------------------------------
  
  Using either recipe, you can now go to http://localhost/protected and be 
prompted by the browser to enter your credentials. If you enter correct 
credentials you will be granted access to '''protected'''. If you don't enter 
correct credentials, you will be continually prompted to enter credentials 
until you enter correct credentials or click the '''Cancel''' button.
  [[BR]]
- ==== Conditional passwordless access for webmasters ====
- 
- The following recipe uses your incorporates the "Satisfy Any", "Allow", and 
"Order" directives to allow google, CSS and XHTML validation via w3.org, 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 /some/path/.htpasswd
- AuthType basic
- Require valid-user
- Order deny,allow
- Deny from all
- Allow from 24.205.23.222 w3.org  htmlhelp.com googlebot.com google.com 
google-analytics.com
- Satisfy Any
- }}}
- 
- 
  
  For more complete information on the Apache directives used, see the 
[http://httpd.apache.org/docs/ Apache Docs].
  

Reply via email to