Recent comments and posts model methods. Tags cloud. Post modtime fix.
[blog.pm.git] / script / blog_fastcgi.pl
blob0eab8dc6cb0e12f8e27f977dfcd01d880a843284
1 #!/usr/bin/perl -w
3 BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
5 use strict;
6 use warnings;
7 use Getopt::Long;
8 use Pod::Usage;
9 use FindBin;
10 use lib "$FindBin::Bin/../lib";
11 use Blog;
13 my $help = 0;
14 my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
16 GetOptions(
17 'help|?' => \$help,
18 'listen|l=s' => \$listen,
19 'nproc|n=i' => \$nproc,
20 'pidfile|p=s' => \$pidfile,
21 'manager|M=s' => \$manager,
22 'daemon|d' => \$detach,
23 'keeperr|e' => \$keep_stderr,
26 pod2usage(1) if $help;
28 Blog->run(
29 $listen,
30 { nproc => $nproc,
31 pidfile => $pidfile,
32 manager => $manager,
33 detach => $detach,
34 keep_stderr => $keep_stderr,
40 =head1 NAME
42 blog_fastcgi.pl - Catalyst FastCGI
44 =head1 SYNOPSIS
46 blog_fastcgi.pl [options]
48 Options:
49 -? -help display this help and exits
50 -l -listen Socket path to listen on
51 (defaults to standard input)
52 can be HOST:PORT, :PORT or a
53 filesystem path
54 -n -nproc specify number of processes to keep
55 to serve requests (defaults to 1,
56 requires -listen)
57 -p -pidfile specify filename for pid file
58 (requires -listen)
59 -d -daemon daemonize (requires -listen)
60 -M -manager specify alternate process manager
61 (FCGI::ProcManager sub-class)
62 or empty string to disable
63 -e -keeperr send error messages to STDOUT, not
64 to the webserver
66 =head1 DESCRIPTION
68 Run a Catalyst application as fastcgi.
70 =head1 AUTHORS
72 Catalyst Contributors, see Catalyst.pm
74 =head1 COPYRIGHT
76 This library is free software, you can redistribute it and/or modify
77 it under the same terms as Perl itself.
79 =cut