1HTTP::Server::PSGI(3) User Contributed Perl DocumentationHTTP::Server::PSGI(3)
2
3
4
6 HTTP::Server::PSGI - Standalone PSGI compatible HTTP server
7
9 use HTTP::Server::PSGI;
10
11 my $server = HTTP::Server::PSGI->new(
12 host => "127.0.0.1",
13 port => 9091,
14 timeout => 120,
15 );
16
17 $server->run($app);
18
20 HTTP::Server::PSGI is a standalone, single-process and PSGI compatible
21 HTTP server implementations.
22
23 This server should be great for the development and testing, but might
24 not be suitable for a production use.
25
26 Some features in HTTP/1.1, notably chunked requests, responses and
27 pipeline requests are NOT supported. See Starman if you want those
28 features.
29
31 HTTP::Server::PSGI does NOT support preforking. See Starman or Starlet
32 if you want a multi-process prefork web servers.
33
35 Kazuho Oku
36
37 Tatsuhiko Miyagawa
38
40 Plack::Handler::Standalone Starman Starlet
41
42
43
44perl v5.12.3 2011-07-08 HTTP::Server::PSGI(3)