NAME

Catalyst::Engine::FCGI - Catalyst FCGI Engine

SYNOPSIS

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;

DESCRIPTION

This is the Catalyst engine for FastCGI.

OVERLOADED METHODS

This class overloads some methods from Catalyst::Engine::CGI.

$c->run

SEE ALSO

Catalyst.

AUTHOR

Sebastian Riedel, sri@cpan.org

COPYRIGHT

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.