in reply to Security
Apache's built-in basic authentication can use the following three files:
For instance, let's say that you created a directory called SA and you only wanted users who are members of the SAgroup to have access. Then place in your SA directory an .htaccess file similar to the following:
Your .htgroup file might look something like this:AuthName "Security Solutions Center HelpDesk" AuthType Basic AuthUserFile /mypath/.htpasswd AuthGroupFile /mypath/.htgroup <Limit GET POST> require group SAgroup </LIMIT> ~
There are several ways to create your .htpasswd file of Apache users and their encrypted passwords. I like the htpasswd module on CPAN.SAgroup: NM1121 Ella Mojo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Security
by arhuman (Vicar) on May 23, 2001 at 20:20 UTC | |
|
Re: Re: Security
by ok (Beadle) on May 24, 2001 at 00:40 UTC |