The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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

SEE ALSO

Plack