Bric::App::Auth

Name

Bric::App::Auth - Does the dirty work of authentication.

Synopsis

<Perl>
use lib '/usr/local/bricolage/lib';
</Perl>
<VirtualHost _default_:443>
    ErrorLog /usr/local/apache/logs/error_log
    TransferLog /usr/local/apache/logs/access_log
    SSLEngine on
    SSLCipherSuite ALL:!ADH:!EXP56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
    SSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crt
    SSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.key
    <Location /login>
        SetHandler perl-script
        PerlHandler Bric::App::Auth
    </Location>
</VirtualHost>

Description

This module handles the user authentication.

Interface

Constructors

NONE.

Destructors

NONE.

Public Class Methods

NONE.

Public Functions

Private

Private Class Methods

NONE.

Private Instance Methods

NONE.

Private Functions

Notes

NONE.

Author

David Wheeler

See Also

Bric