I am trying to set up a directory that is password protected. I placed the following Directory tag in my httpd.conf file:
<Directory "/home/myhome/public_html/internal">
AuthType Digest
AuthName "My Internal Files"
AuthDigestFile /etc/httpd/passwd/passwords
Require valid-user
Options +Indexes
</Directory>
and set up a password file for the realm "My Internal Files" using htdigest. The browser (I am using Firefox 1.0) prompts me for a user name and password if I try to browse in the directory, but never accepts my responses - I just get the prompt back, as if the password were not correct.
Any ideas of what I might be doing wrong?
Steve Willett
<Directory "/home/myhome/public_html/internal">
AuthType Digest
AuthName "My Internal Files"
AuthDigestFile /etc/httpd/passwd/passwords
Require valid-user
Options +Indexes
</Directory>
and set up a password file for the realm "My Internal Files" using htdigest. The browser (I am using Firefox 1.0) prompts me for a user name and password if I try to browse in the directory, but never accepts my responses - I just get the prompt back, as if the password were not correct.
Any ideas of what I might be doing wrong?
Steve Willett