GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Plack::App::WrapCGI(3) User Contributed Perl Documentation Plack::App::WrapCGI(3)

Plack::App::WrapCGI - Compiles a CGI script as PSGI application

  use Plack::App::WrapCGI;

  my $app = Plack::App::WrapCGI->new(script => "/path/to/script.pl")->to_app;

  # if you want to execute as a real CGI script
  my $app = Plack::App::WrapCGI->new(script => "/path/to/script.rb", execute => 1)->to_app;

Plack::App::WrapCGI compiles a CGI script into a PSGI application using CGI::Compile and CGI::Emulate::PSGI, and runs it with any PSGI server as a PSGI application.

See also Plack::App::CGIBin if you have a directory that contains a lot of CGI scripts and serve them like Apache's mod_cgi.

new
  my $app = Plack::App::WrapCGI->new(%args);
    

Creates a new PSGI application using the given script. %args has two parameters:

script
The path to a CGI-style program. This is a required parameter.
execute
An optional parameter. When set to a true value, this app will run the script with a CGI-style "fork"/"exec" model. Note that you may run programs written in other languages with this approach.

Tatsuhiko Miyagawa

Plack::App::CGIBin
2020-11-30 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.