Query: plack::handler::apache2
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Plack::Handler::Apache2(3pm) User Contributed Perl Documentation Plack::Handler::Apache2(3pm)NAMEPlack::Handler::Apache2 - Apache 2.0 handlers to run PSGI applicationSYNOPSIS<Location /> SetHandler perl-script PerlResponseHandler Plack::Handler::Apache2 PerlSetVar psgi_app /path/to/app.psgi </Location> # Optional, preload the application in the parent like startup.pl <Perl> use Plack::Handler::Apache2; Plack::Handler::Apache2->preload("/path/to/app.psgi"); </Perl>DESCRIPTIONThis is a handler module to run any PSGI application with mod_perl on Apache 2.x.CREATING CUSTOM HANDLERIf you want to create a custom handler that loads or creates PSGI applications using other means than loading from ".psgi" files, you can create your own handler class and use "call_app" class method to run your application. package My::ModPerl::Handler; use Plack::Handler::Apache2; sub get_app { # magic! } sub handler { my $r = shift; my $app = get_app(); Plack::Handler::Apache2->call_app($r, $app); }AUTHORTatsuhiko MiyagawaCONTRIBUTORSPaul DriverSEE ALSOPlack perl v5.14.2 2011-08-26 Plack::Handler::Apache2(3pm)
Related Man Pages |
---|
plack(3pm) - debian |
plack::app::file(3pm) - debian |
plack::loader::delayed(3pm) - debian |
plack::middleware::recursive(3pm) - debian |
plack::runner(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
Adding the individual columns of a matrix. |
Is UNIX an open source OS ? |
One instance of comparing grep and awk |
A (ksh) Library For and From UNIX.com |
New UNIX and Linux History Sections |