Apache2-AuthCASSimple

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

NAME
    Apache2::AuthCASSimple - Apache2 module to authentificate through a CAS
    server

DESCRIPTION
    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.

SYNOPSIS
      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

CONFIGURATION
    CASServerName
        Name of the CAS server. It can be a numeric IP address.

    CASServerPort
        Port of the CAS server. Default is 443.

    CASServerPath
        Path (URI) of the CAS server. Default is "/cas".

    CASServerNoSSL
        Disable SSL transaction wih CAS server (HTTPS). Default is off.

    CASCaFile
        CAS server public key. This file is used to allow secure connection
        between the webserver using Apache2::AuthCASSimple and the CAS
        server.

        DEPRECATED : Authen::CAS::Client use LWP::UserAgent to make https
        requests

    CASSessionTimeout
        Timeout (in second) for session create by Apache2::AuthCASSimple (to
        avoid CAS server overloading). Default is 60.



( run in 0.779 second using v1.01-cache-2.11-cpan-39bf76dae61 )