Re: apache2 directory protection



On 09-12-04 11:14:38, vr wrote:
I am having trouble getting apache2 recognizing directory protection.

I've created a directory /var/www/mydir and created .htaccess &
.htpasswd files in there but am never prompted for login.

.htaccess
AuthUserFile /var/www/mydir/.htpasswd
AuthType Basic
AuthName "test"
require valid-user

.htpasswd
mytestuser:<hashedScramble>

I understand that .htpasswd should reside someplace else and even
moved it to rule this out but is the above not enough on a default
installation of apache2 under lenny to protect a directory?

Your httpd.conf must "AllowOverride AuthConfig" for /var/www/mydir:

#Password-protected access to mydir.
<Directory "/var/www/mydir">
AllowOverride AuthConfig
</Directory>

The httpd docs at <http://httpd.apache.org/docs/2.2/> are useful for
this sort of thing. You might want to look at the tutorials.

--
____________________________________________________________________
TonyN.:' <mailto:tonynelson@xxxxxxxxxxxxxxxxx>
' <http://www.georgeanelson.com/>


--
To UNSUBSCRIBE, email to debian-user-REQUEST@xxxxxxxxxxxxxxxx
with a subject of "unsubscribe". Trouble? Contact listmaster@xxxxxxxxxxxxxxxx



Relevant Pages

  • Re: apache2 directory protection
    ... I understand that .htpasswd should reside someplace else and even moved it ... To UNSUBSCRIBE, email to debian-user-REQUEST@xxxxxxxxxxxxxxxx ... Trouble? ...
    (Debian-User)
  • RE: htpasswd
    ... Actually htpasswd is the command /executable to create a file which would be having the list of usernames with the password. ... actually it is also used to work in sync with .htaccess file which defines the access levels for the files and the directories and also to have the authentication purpose to resolve that who can access what files. ... unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe ...
    (RedHat)
  • htpasswd
    ... I need use htpasswd in Fedora 2. ... is necessary start in the httpd service? ... unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe ...
    (RedHat)