Merge pull request #64 from solgenomics/topic/update_view_permission
[SMMID.git] / script / smmid_fastcgi.pl
blob86679dbaa04cb0d360f1c4a342026527cb98e3ab
1 #!/usr/bin/env perl
3 use Catalyst::ScriptRunner;
4 Catalyst::ScriptRunner->run('SMMID', 'FastCGI');
6 1;
8 =head1 NAME
10 smmid_fastcgi.pl - Catalyst FastCGI
12 =head1 SYNOPSIS
14 smmid_fastcgi.pl [options]
16 Options:
17 -? --help display this help and exit
18 -l --listen socket path to listen on
19 (defaults to standard input)
20 can be HOST:PORT, :PORT or a
21 filesystem path
22 -n --nproc specify number of processes to keep
23 to serve requests (defaults to 1,
24 requires --listen)
25 -p --pidfile specify filename for pid file
26 (requires --listen)
27 -d --daemon daemonize (requires --listen)
28 -M --manager specify alternate process manager
29 (FCGI::ProcManager sub-class)
30 or empty string to disable
31 -e --keeperr send error messages to STDOUT, not
32 to the webserver
33 --proc_title Set the process title (if possible)
35 =head1 DESCRIPTION
37 Run a Catalyst application as FastCGI.
39 =head1 AUTHORS
41 Catalyst Contributors, see Catalyst.pm
43 =head1 COPYRIGHT
45 This library is free software. You can redistribute it and/or modify
46 it under the same terms as Perl itself.
48 =cut