Bric::App::AccessHandler

Name

Bric::App::AccessHandler - Handles Authentication and Session setup during the Apache Access phase.

Synopsis

<Perl>
use lib '/usr/local/bricolage/lib';
</Perl>
PerlModule Bric::App::AccessHandler    <Location /media>
      SetHandler default-handler
  </Location>

PerlModule Bric::App::Handler
PerlFreshRestart    On
DocumentRoot "/usr/local/bricolage/comp"
<Directory "/usr/local/bricolage/comp">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    SetHandler perl-script
    PerlHandler Bric::App::Handler
    PerlAccessHandler Bric::App::AccessHandler
</Directory>

Description

This module handles the Access phase of an Apache request. It authenticates users to Bricolage, and sets up Session handling.

Interface

Constructors

NONE.

Destructors

NONE.

Public Class Methods

NONE.

Public Functions

Private

Private Class Methods

NONE.

Private Instance Methods

NONE.

Private Functions

NONE.

Notes

NONE.

Author

David Wheeler

See Also

Bric