Fixed cookbook
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FastCGI.pm
CommitLineData
d1d9793f 1package Catalyst::Engine::FastCGI;
ffb41d94 2
3use strict;
d1d9793f 4use base qw(Catalyst::Engine::FastCGI::Base Catalyst::Engine::CGI);
ffb41d94 5
6=head1 NAME
7
d1d9793f 8Catalyst::Engine::FastCGI - Catalyst FastCGI Engine
ffb41d94 9
10=head1 SYNOPSIS
11
d1d9793f 12A script using the Catalyst::Engine::FastCGI module might look like:
c9afa5fc 13
14 #!/usr/bin/perl -w
15
16 BEGIN {
d1d9793f 17 $ENV{CATALYST_ENGINE} = 'FastCGI';
c9afa5fc 18 }
19
20 use strict;
21 use lib '/path/to/MyApp/lib';
22 use MyApp;
23
24 MyApp->run;
ffb41d94 25
26=head1 DESCRIPTION
27
28This is the Catalyst engine for FastCGI.
29
ffb41d94 30=head1 SEE ALSO
31
c2e8e6fa 32L<Catalyst>, L<Catalyst::Engine::CGI>.
ffb41d94 33
34=head1 AUTHOR
35
36Sebastian Riedel, C<sri@cpan.org>
c2e8e6fa 37Christian Hansen, C<ch@ngmedia.com>
ffb41d94 38
39=head1 COPYRIGHT
40
41This program is free software, you can redistribute it and/or modify it under
42the same terms as Perl itself.
43
44=cut
45
461;