I created a vhost in apache with this config
Alias /my /srv/my
<Location /my>
AuthType basic
AuthName "private area"
AuthBasicProvider file
AuthUserFile /var/www/vhosts/my/mypass
Require valid-user
</Location>
I enter the url in browser, am asked for passwd but get access denied. All further request are denied without asking (cached?).
Prob is it wont accept my passwd, even I updated the passwd file so i am sure to use the correct one.
mypassusinghtpasswd? Have you tried to use a rather simple password to exclude encoding issues? – mbx Apr 4 '11 at 13:42