X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=share%2Fscript%2Fmyapp_fastcgi.pl.tt;h=e840f7f134b0c4f611e9dace4400165fbdcf4db5;hb=615852255eb5ae19d9075871fccc9c30e6a2e979;hp=7c2218ffed192c902ef91da8f527750585933dd1;hpb=5c964aaab613f47a92b49ec3fa3679222a25c79e;p=catagits%2FCatalyst-Devel.git diff --git a/share/script/myapp_fastcgi.pl.tt b/share/script/myapp_fastcgi.pl.tt index 7c2218f..e840f7f 100644 --- a/share/script/myapp_fastcgi.pl.tt +++ b/share/script/myapp_fastcgi.pl.tt @@ -1,39 +1,7 @@ [% startperl %] -BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' } - -use strict; -use warnings; -use Getopt::Long; -use Pod::Usage; -use FindBin; -use lib "$FindBin::Bin/../lib"; -use [% name %]; - -my $help = 0; -my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr ); - -GetOptions( - 'help|?' => \$help, - 'listen|l=s' => \$listen, - 'nproc|n=i' => \$nproc, - 'pidfile|p=s' => \$pidfile, - 'manager|M=s' => \$manager, - 'daemon|d' => \$detach, - 'keeperr|e' => \$keep_stderr, -); - -pod2usage(1) if $help; - -[% name %]->run( - $listen, - { nproc => $nproc, - pidfile => $pidfile, - manager => $manager, - detach => $detach, - keep_stderr => $keep_stderr, - } -); +use Catalyst::ScriptRunner; +Catalyst::ScriptRunner->run('[% name %]', 'FastCGI'); 1; @@ -47,21 +15,22 @@ pod2usage(1) if $help; Options: -? -help display this help and exits - -l -listen Socket path to listen on + -l --listen Socket path to listen on (defaults to standard input) can be HOST:PORT, :PORT or a filesystem path - -n -nproc specify number of processes to keep + -n --nproc specify number of processes to keep to serve requests (defaults to 1, requires -listen) - -p -pidfile specify filename for pid file + -p --pidfile specify filename for pid file (requires -listen) - -d -daemon daemonize (requires -listen) - -M -manager specify alternate process manager + -d --daemon daemonize (requires -listen) + -M --manager specify alternate process manager (FCGI::ProcManager sub-class) or empty string to disable - -e -keeperr send error messages to STDOUT, not + -e --keeperr send error messages to STDOUT, not to the webserver + --proc_title Set the process title (is possible) =head1 DESCRIPTION