Catalyst::Engine::FCGI - Catalyst FCGI Engine |
Catalyst::Engine::FCGI - Catalyst FCGI Engine
A script using the Catalyst::Engine::FCGI module might look like:
#!/usr/bin/perl -w
BEGIN { $ENV{CATALYST_ENGINE} = 'FCGI'; }
use strict; use lib '/path/to/MyApp/lib'; use MyApp;
MyApp->run;
This is the Catalyst engine for FastCGI.
This class overloads some methods from Catalyst::Engine::CGI
.
Catalyst.
Sebastian Riedel, sri@cpan.org
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
Catalyst::Engine::FCGI - Catalyst FCGI Engine |