FCGI::Engine::Manager::Server::Plackup - A subclass of FCGI::Engine::Manager::Server for Plack apps


FCGI-Engine documentation Contained in the FCGI-Engine distribution.

Index


Code Index:

NAME

Top

FCGI::Engine::Manager::Server::Plackup - A subclass of FCGI::Engine::Manager::Server for Plack apps

DESCRIPTION

Top

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.

BUGS

Top

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.

AUTHOR

Top

Stevan Little <stevan@iinteractive.com>

COPYRIGHT AND LICENSE

Top


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__