Fixed cookbook
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FastCGI / APR.pm
CommitLineData
e05d67cf 1package Catalyst::Engine::FastCGI::APR;
2
3use strict;
4use base qw(Catalyst::Engine::FastCGI::Base Catalyst::Engine::CGI::APR);
5
6=head1 NAME
7
8Catalyst::Engine::FastCGI::APR - Catalyst FastCGI APR Engine
9
10=head1 SYNOPSIS
11
12A script using the Catalyst::Engine::FastCGI::APR module might look like:
13
14 #!/usr/bin/perl -w
15
16 BEGIN {
17 $ENV{CATALYST_ENGINE} = 'FastCGI::APR';
18 }
19
20 use strict;
21 use lib '/path/to/MyApp/lib';
22 use MyApp;
23
24 MyApp->run;
25
26=head1 DESCRIPTION
27
28This is the Catalyst engine for FastCGI and APR.
29
30=head1 SEE ALSO
31
32L<Catalyst>, L<Catalyst::Engine::CGI::APR>.
33
34=head1 AUTHOR
35
36Sebastian Riedel, C<sri@cpan.org>
37Christian Hansen, C<ch@ngmedia.com>
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;