Controller::ActionRole is dead
[catagits/Gitalist.git] / script / gitalist_fastcgi.pl
CommitLineData
ba331b70 1#!/usr/bin/perl
42b626cd 2use FindBin;
4b3ff1cd 3BEGIN {
c7d034f8 4 my $env = "$FindBin::Bin/env";
4b3ff1cd 5 if (-r $env) {
6 do $env or die $@;
7 }
8}
89de6a33 9
df097c84 10use Catalyst::ScriptRunner;
11Catalyst::ScriptRunner->run('Gitalist','FastCGI');
89de6a33 12
131;
14
15=head1 NAME
16
17gitalist_fastcgi.pl - Catalyst FastCGI
18
19=head1 SYNOPSIS
20
21gitalist_fastcgi.pl [options]
22
23 Options:
24 -? -help display this help and exits
25 -l -listen Socket path to listen on
26 (defaults to standard input)
27 can be HOST:PORT, :PORT or a
28 filesystem path
29 -n -nproc specify number of processes to keep
30 to serve requests (defaults to 1,
31 requires -listen)
32 -p -pidfile specify filename for pid file
33 (requires -listen)
34 -d -daemon daemonize (requires -listen)
35 -M -manager specify alternate process manager
36 (FCGI::ProcManager sub-class)
37 or empty string to disable
38 -e -keeperr send error messages to STDOUT, not
39 to the webserver
40
41=head1 DESCRIPTION
42
43Run a Catalyst application as fastcgi.
44
45=head1 AUTHORS
46
47Catalyst Contributors, see Catalyst.pm
48
49=head1 COPYRIGHT
50
51This library is free software. You can redistribute it and/or modify
52it under the same terms as Perl itself.
53
54=cut