I want to password the directory /rutorrent
on my website. In that directory, I've created this .htaccess
file:
AuthUserFile /home/whitey/sites/localhost/.htpasswd
AuthName "Login to use rutorrent"
AuthType Basic
require valid-user
And then I have a .htpasswd
file in /home/whitey/sites/localhost/
:
whitey:f9kK77E4scRcI
I've generated the password using an online .htpasswd
generator. I've restarted Apache, but when I go to the /rutorrent
directory, I'm not prompted for a password.
Nothing shows up in the error logs, either.