Is there something in the apache httpd.conf file I need to set to allow the proper parsing of these files? Anyone know why this would not be working?
My .htaccess file looks like the follwoing:
AuthUserFile /var/www/passwd/.htpasswd
AuthGroupFile /dev/null
AuthName Protected
AuthType Basic
require user <username>
I created the .htpasswd file in a directory outside of my webroot so as to not have a security incident. I used the htpasswd app to create the encrypted password and file. Is there something else I am missing?


