[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] RAQ4 password protetion for dummies
- Subject: Re: [cobalt-users] RAQ4 password protetion for dummies
- From: "Robert Fitzpatrick" <robert@xxxxxxxxxxx>
- Date: Sun Jan 20 20:34:14 2002
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> ---------------------------------------
> AuthUserFile /home/sites/site???/.passwd
> AuthGroupFile /dev/null
> AuthName "TITLE"
> AuthType Basic
>
> require userUSERNAME
>
Try this in your .htaccess file. And if your password protecting a web
site on the RaQ (at least for my RaQ3), you need the .htaccess
and .htpasswd files in the 'web' directory or wherever the directory
you are protecting.
# Access file
order allow,deny
allow from all
require valid-user
AuthName "TITLE"
AuthPAM_Enabled off
Authtype Basic
AuthUserFile /home/sites/site???/web/.passwd
<Limit GET POST>
require valid-user
</Limit>
--
Robert