| FCGI-Engine documentation | Contained in the FCGI-Engine distribution. |
FCGI::Engine::Manager::Server::Plackup - A subclass of FCGI::Engine::Manager::Server for Plack apps
This uses the plackup utility that comes with Plack to manage a Plack FCGI application.
See FCGI::Engine::Manager for details on how to configure things.
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.
Stevan Little <stevan@iinteractive.com>
Copyright 2007-2010 by Infinity Interactive, Inc.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| FCGI-Engine documentation | Contained in the FCGI-Engine distribution. |
package FCGI::Engine::Manager::Server::Plackup; use Moose; our $VERSION = '0.18'; our $AUTHORITY = 'cpan:STEVAN'; extends 'FCGI::Engine::Manager::Server'; has 'server_type' => ( is => 'ro', isa => 'Str', default => sub { 'FCGI::Engine' } ); has 'workers' => ( is => 'ro', isa => 'Int' ); sub construct_command_line { my $self = shift; return ("plackup", $self->scriptname, "--server", $self->server_type, ( $self->workers ? ( "--workers", $self->workers ) : ( "--nproc", $self->nproc ) ), "--pid", $self->pidfile, "--listen", $self->socket, "--daemonize", ($self->has_additional_args ? $self->additional_args : ())); } __PACKAGE__->meta->make_immutable; no Moose; 1; __END__