source: server/trunk/web/script/sophie_fastcgi.pl @ 417

Last change on this file since 417 was 1, checked in by nanardon, 14 years ago
  • init projects
  • Property svn:executable set to *
File size: 1.1 KB
Line 
1#!/usr/bin/env perl
2
3use Catalyst::ScriptRunner;
4Catalyst::ScriptRunner->run('Sophie', 'FastCGI');
5
61;
7
8=head1 NAME
9
10sophie_fastcgi.pl - Catalyst FastCGI
11
12=head1 SYNOPSIS
13
14sophie_fastcgi.pl [options]
15
16 Options:
17   -? -help      display this help and exits
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
34=head1 DESCRIPTION
35
36Run a Catalyst application as fastcgi.
37
38=head1 AUTHORS
39
40Catalyst Contributors, see Catalyst.pm
41
42=head1 COPYRIGHT
43
44This library is free software. You can redistribute it and/or modify
45it under the same terms as Perl itself.
46
47=cut
Note: See TracBrowser for help on using the repository browser.