[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] .htaccess files and password protecting Directories
- Subject: RE: [cobalt-users] .htaccess files and password protecting Directories
- From: Jerald C Jones <jcjones@xxxxxxxxxx>
- Date: Sat Nov 4 00:56:01 2000
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> Here is my . htaccess file
>
> # Access file
> order allow,deny
> allow from all
> require valid-user
> Authname "Rotary Members Only"
> Authtype Basic
> AuthUserFile /home/sites/.htpasswd
Use the following for your .htaccess file:
AuthName "Rotary Members Only"
AuthType Basic
AuthUserFile /home/sites/.htpasswd
AuthPAM_Enabled off
<Limit GET POST>
require valid-user
</Limit>
JC Jones :)