logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       Aaron Trevena

       Tatsuhiko Miyagawa

Description

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

       If you want to run PSGI applications behind Apache instead of using mod_perl, see Plack::Handler::FCGI to
       run with FastCGI, or use standalone HTTP servers such as Starman or Starlet proxied with mod_proxy.

Name

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

See Also

       Plack

perl v5.38.2                                       2024-01-20                       Plack::Handler::Apache1(3pm)

Synopsis

         <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>

See Also