NAME
Apache::AuthenDBMFile - Authentication with a "password" database
SYNOPSIS
# Authentication in .htaccess/httpd.conf
AuthName "User Authentication"
AuthType Basic
# authenticate using a password database
PerlAuthenHandler Apache::AuthenDBMFile
PerlSetVar AuthenDBMFile /some/file
# constraints
require valid-user
# require user larry moe curly
DESCRIPTION
This Perl module allows authentication against a "password" database -- each entry in the database is indexed by a userid and consists of a "cipher:grouplist" where the cipher is a standard Unix crypt of the user's password. The grouplist is compatible with AuthDBMGroupFile constraints.
The AuthenDBMFile parameter specifies the password database that should be searched.
SEE ALSO
AUTHOR
Reg Quinton <reggers@ist.uwaterloo.ca>, 18-Oct-2002.
COPYRIGHT
The Apache::AuthenDBMFile module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.