freebsd-ports/www/mod_auth_cas/pkg-message
Bernard Spil b38d05d84e www/mod_auth_cas: Update to 1.1
- Update to 1.1
 - Add modules.d configuration file
 - Builds OK with clang
 - Fix configure detection of libpcre

PR:             214707
Submitted by:   Geoffroy Desvernay <dgeo@centrale-marseille.fr>
With hat:       apache
2017-11-05 12:36:16 +00:00

32 lines
1.1 KiB
Text

======================================================================
Set a few required parameters in your Apache configuration:
CASCookiePath /var/cache/apache2/mod_auth_cas/
CASLoginURL https://login.example.org/cas/login
CASValidateURL https://login.example.org/cas/serviceValidate
Protect a "Location" or "Directory" block in your Apache configuration:
<Location /secured>
Authtype CAS
require valid-user
</Location>
If SAML-delivered attribute authorization is also desired, use the
samlValidate URL, enable SAML validation, and specify cas-attribute
in your require rule (please note: both attribute name and value are
case-sensitive):
CASCookiePath /var/cache/apache2/mod_auth_cas/
CASLoginURL https://login.example.org/cas/login
CASValidateURL https://login.example.org/cas/samlValidate
CASValidateSAML On
<Location /secured>
Authtype CAS
require cas-attribute edupersonaffiliation:staff
</Location>
For more informations see:
https://github.com/Jasig/mod_auth_cas
======================================================================