On 7/25/06, Richard Collyer <[EMAIL PROTECTED]> wrote:
<VirtualHost *:80>
         ServerName steve.firebadger.net
         ServerAlias steve.firebadger.net
         DocumentRoot /home/httpd/vhosts/firebadger.net/steve

         <Directory "/home/httpd/vhosts/firebadger.net/steve/">
                 Options Indexes FollowSymLinks
                 AllowOverride None
                 Order allow,deny
                 Allow from all

                 AuthType Basic
                 AuthUserFile
/home/httpd/vhosts/firebadger.net/access/.htpasswd
                 AuthName jinzora
                 require valid-user
                 satisfy any
         </Directory>

Satisfy Any in this context means that either Allow from all -or-
Require are enough to meet the restrictions, meaning that a password
isn't required. Try Satisfy All (or get rid of Satisfy, I'm not sure
it's needed here).

--
noodl

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to