Re: apache2 directory protection
- From: Tony Nelson <tonynelson@xxxxxxxxxxxxxxxxx>
- Date: Fri, 04 Dec 2009 12:19:32 -0500
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
- References:
- apache2 directory protection
- From: vr
- apache2 directory protection
- Prev by Date: Re: Will Debian accept a SATA to IDE hdd adapter?
- Next by Date: Re: v. elementary problem installing Lexmark z600 printer driver on Lenny
- Previous by thread: Re: apache2 directory protection
- Next by thread: Re: apache2 directory protection
- Index(es):
Relevant Pages
|