Apache2::AuthCASSimple(3pm) | User Contributed Perl Documentation | Apache2::AuthCASSimple(3pm) |
Apache2::AuthCASSimple - Apache2 module to authentificate through a CAS server
Apache2::AuthCASSimple is an authentication module for Apache2/mod_perl2. It allow you to authentificate users through a Yale CAS server. It means you don't need to give login/password if you've already be authentificate by the CAS server, only tickets are exchanged between Web client, Apache2 server and CAS server. If you not're authentificate yet, you'll be redirect on the CAS server login form.
This module allow the use of simple text files for sessions.
PerlOptions +GlobalRequest <Location /protected> AuthType Apache2::AuthCASSimple PerlAuthenHandler Apache2::AuthCASSimple PerlSetVar CASServerName my.casserver.com PerlSetVar CASServerPath / # PerlSetVar CASServerPort 443 # PerlSetVar CASServerNoSSL 1 PerlSetVar CASSessionTimeout 3660 PerlSetVar CASSessionDirectory /tmp # PerlSetVar CASFixDirectory / # PerlSetVar ModProxy 1 # PerlSetVar HTTPSServer 1 require valid-user </Location>
or
order deny,allow deny from all require user xxx yyyy satisfy any
DEPRECATED : Authen::CAS::Client use LWP::UserAgent to make https requests
-1 means disable.
0 mean infinite (until the user close browser).
call by apache2
This documentation describes Apache2::AuthCASSimple version 0.10
PerlOptions +GlobalRequest
in your virtualhost conf
a2enmod apreq
or add
LoadModule apreq_module /usr/lib/apache2/modules/mod_apreq2.so
in your apache configuration file
Please submit any bug reports to agostini@univ-metz.fr.
Requires "mod_perl 2" version 2.02 or later Requires Authen::CAS::Client Requires Apache::Session::Wrapper
Yves Agostini CPAN ID: YVESAGO Univ Metz agostini@univ-metz.fr http://www.crium.univ-metz.fr
Copyright (c) 2009 by Yves Agostini
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
2022-06-06 | perl v5.34.0 |