NAME
Plack::Handler::Apache2 - Apache 2.0 handlers to run PSGI application
SYNOPSIS
<Location />
SetHandler perl-script
PerlResponseHandler Plack::Handler::Apache2
PerlSetVar psgi_app /path/to/app.psgi
</Location>
<Perl>
use Plack::Handler::Apache2;
Plack::Handler::Apache2->preload("/path/to/app.psgi");
</Perl>
DESCRIPTION
This is a handler module to run any PSGI application with mod_perl on Apache 2.x.
AUTHOR
Tatsuhiko Miyagawa