Plack::Handler::Standalone - adapter for HTTP::Server::PSGI


Plack documentation Contained in the Plack distribution.

Index


Code Index:

NAME

Top

Plack::Handler::Standalone - adapter for HTTP::Server::PSGI

SYNOPSIS

Top

  % plackup -s Standalone \
      --host 127.0.0.1 --port 9091 --timeout 120

DESCRIPTION

Top

Plack::Handler::Standalone is an adapter for default Plack server implementation HTTP::Server::PSGI. This is just an alias for Plack::Handler::HTTP::Server::PSGI.

SEE ALSO

Top

Plack::Handler::HTTP::Server::PSGI


Plack documentation Contained in the Plack distribution.

package Plack::Handler::Standalone;
use strict;
use warnings;
use parent qw( Plack::Handler::HTTP::Server::PSGI );

1;

__END__