source: trunk/LATMOS-Accounts-Web/script/latmos_accounts_web_fastcgi.pl @ 2424

Last change on this file since 2424 was 2162, checked in by nanardon, 5 years ago

Changes for mageia6

  • Property svn:executable set to *
File size: 1.2 KB
RevLine 
[2162]1#!/usr/bin/env perl
[94]2
[2162]3use Catalyst::ScriptRunner;
4Catalyst::ScriptRunner->run('LATMOS::Accounts::Web', 'FastCGI');
[94]5
61;
7
8=head1 NAME
9
10latmos_accounts_web_fastcgi.pl - Catalyst FastCGI
11
12=head1 SYNOPSIS
13
14latmos_accounts_web_fastcgi.pl [options]
[2162]15
[94]16 Options:
[2162]17   -? --help      display this help and exit
18   -l --listen   socket path to listen on
[94]19                 (defaults to standard input)
20                 can be HOST:PORT, :PORT or a
21                 filesystem path
[2162]22   -n --nproc    specify number of processes to keep
[94]23                 to serve requests (defaults to 1,
[2162]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
[94]29                 (FCGI::ProcManager sub-class)
30                 or empty string to disable
[2162]31   -e --keeperr  send error messages to STDOUT, not
[94]32                 to the webserver
[2162]33   --proc_title  Set the process title (if possible)
[94]34
35=head1 DESCRIPTION
36
[2162]37Run a Catalyst application as FastCGI.
[94]38
[2162]39=head1 AUTHORS
[94]40
[2162]41Catalyst Contributors, see Catalyst.pm
[94]42
43=head1 COPYRIGHT
44
[2162]45This library is free software. You can redistribute it and/or modify
[94]46it under the same terms as Perl itself.
47
48=cut
Note: See TracBrowser for help on using the repository browser.