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>

AUTHOR

Tatsuhiko Miyagawa