Apache-AuthPAM
view release on metacpan or search on metacpan
#
# Conversation Function
#
sub my_conv_func {
my @res;
while(@_) {
my $msg_type = shift;
my $msg = shift;
push @res, (0, $pw{$$});
}
push @res, 0;
return @res;
}
1;
__END__
# Below is stub documentation for your module. You better edit it!
=head1 NAME
Apache::AuthPAM - Authenticate apache request using PAM services
=head1 SYNOPSIS
# /etc/httpd.conf
<Directory /var/www/https/secured-area/>
AuthType Basic
AuthName "your server account"
PerlAuthHandler Apache::AuthPAM
PerlSetVar PAMservice check_user
require valid-user
</Directory>
# /etc/pam.d/check_user
#%PAM-1.0
auth required /lib/security/pam_pwdb.so nodelay
account required /lib/security/pam_pwdb.so
=head1 DESCRIPTION
This perl module is designed to work with mod_perl and the
Authen::PAM module.
You can select the PAM service setting the perl var PAMservice
PerlSetVar PAMservice the-pam-service-you-want
You can select different PAM services for different directories
or locations in your web server filesystem space.
Apache::AuthPAM works as follows:
First, it calls C<pam_start> with the selected service.
Second, it calls C<pam_authenticate> with the browser/apache supplied username and password.
Later, it calls C<pam_acct_mgmt>.
And finally it calls C<pam_end>.
If any of the PAM functions fail, Apache::AuthPAM logs an info level message and returns C<AUTH_REQUIRED>.
If all PAM functions are succesfull, Apache::AuthPAM logs an info level message and returns C<OK>.
If you are going to use your system password database, you
B<MUST> also use B<mod_ssl>.
=head1 BUGS
I'am using a global symbol.
Apache::AuthPAM is running as the same user mod_perl is running
(on RedHat Linux it is apache). It is running without privileges.
=head1 AUTHOR
Héctor Daniel Cortés González E<lt>hdcg@cie.unam.mxE<gt>
=head1 CREDITS
Apache::AuthPAM is a direct adaptation of Demetrios E. Paneras'
E<lt>dep@media.mit.eduE<gt> Apache::AuthenNISplus.
Authen::PAM is written by Nikolay Pelov E<lt>nikip@iname.comE<gt>.
The sample PAM application check_user.c was contribuited by Shane Watts
with modifications by AGM.
=head1 COPYRIGHT
This apache perl module is Free Software, and can be used under
the terms of the GNU General Public License v2.0 or later.
=head1 SEE ALSO
L<perl>, L<mod_perl>, L<mod_ssl>, L<Authen::PAM>, L<Linux-PAM>
=cut
( run in 0.544 second using v1.01-cache-2.11-cpan-acf6aa7dc9e )