The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

PlugAuth::Client::Tiny::Apache2AuthenHandler - Apache authentication handler for PlugAuth

VERSION

version 0.04

SYNOPSIS

In your httpd.conf:

 <Location /protected>
   PerlAuthenHandler PlugAuth::Client::Tiny::Apache2AuthenHandler
   AuthType Basic
   AuthName "My Protected Documents"
   Require valid-user
   PerlSetEnv PLUGAUTH_URL http://localhost:3001
 </Location>

DESCRIPTION

This module provides PlugAuth authentication (via PlugAuth::Tiny) for your legacy Apache2 application.

ENVIRONMENT

PLUGAUTH_URL

 PerlSetEnv PLUGAUTH_URL http://localhost:3001

Specifies the URL for the PlugAuth server to authenticate against.

SEE ALSO

PlugAuth::Client::Tiny::Apache2AuthzHandler

For authorization.

PlugAuth

Server to authenticate against.

PlugAuth::Client::Tiny

Simplified PlugAuth client.

Alien::Apache24

For testing

AUTHOR

Graham Ollis <plicease@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.