Plack::Handler::Apache1 - Apache 1.3.x handlers to run PSGI application


Plack documentation  | view source Contained in the Plack distribution.

Index


NAME

Top

Plack::Handler::Apache1 - Apache 1.3.x handlers to run PSGI application

SYNOPSIS

Top

  <Location />
  SetHandler perl-script
  PerlHandler Plack::Handler::Apache1
  PerlSetVar psgi_app /path/to/app.psgi
  </Location>

  <Perl>
  use Plack::Handler::Apache1;
  Plack::Handler::Apache1->preload("/path/to/app.psgi");
  </Perl>

DESCRIPTION

Top

This is a handler module to run any PSGI application with mod_perl on Apache 1.3.x.

AUTHOR

Top

Aaron Trevena

Tatsuhiko Miyagawa

SEE ALSO

Top

Plack


Plack documentation  | view source Contained in the Plack distribution.