]> ruin.nu Git - ndwebbie.git/blob - script/ndweb_fastcgi.pl
Use new race infrastructure for members stats
[ndwebbie.git] / script / ndweb_fastcgi.pl
1 #!/usr/bin/env perl
2
3 use local::lib;
4 use Catalyst::ScriptRunner;
5 Catalyst::ScriptRunner->run('NDWeb', 'FastCGI');
6
7 1;
8
9 =head1 NAME
10
11 ndweb_fastcgi.pl - Catalyst FastCGI
12
13 =head1 SYNOPSIS
14
15 ndweb_fastcgi.pl [options]
16
17  Options:
18    -? -help      display this help and exits
19    -l --listen   Socket path to listen on
20                  (defaults to standard input)
21                  can be HOST:PORT, :PORT or a
22                  filesystem path
23    -n --nproc    specify number of processes to keep
24                  to serve requests (defaults to 1,
25                  requires -listen)
26    -p --pidfile  specify filename for pid file
27                  (requires -listen)
28    -d --daemon   daemonize (requires -listen)
29    -M --manager  specify alternate process manager
30                  (FCGI::ProcManager sub-class)
31                  or empty string to disable
32    -e --keeperr  send error messages to STDOUT, not
33                  to the webserver
34
35 =head1 DESCRIPTION
36
37 Run a Catalyst application as fastcgi.
38
39 =head1 AUTHORS
40
41 Catalyst Contributors, see Catalyst.pm
42
43 =head1 COPYRIGHT
44
45 This library is free software. You can redistribute it and/or modify
46 it under the same terms as Perl itself.
47
48 =cut