File: README

package info (click to toggle)
libhttp-server-simple-psgi-perl 0.16-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 124 kB
  • ctags: 15
  • sloc: perl: 178; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 763 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
NAME
    HTTP::Server::Simple::PSGI - PSGI handler for HTTP::Server::Simple

SYNOPSIS
        use HTTP::Server::Simple::PSGI;

        my $server = HTTP::Server::Simple::PSGI->new($port);
        $server->host($host);
        $server->app($app);
        $server->run;

DESCRIPTION
    HTTP::Server::Simple::PSGI is a HTTP::Server::Simple based HTTP server
    that can run PSGI applications. This module only depends on
    HTTP::Server::Simple, which itself doesn't depend on any non-core
    modules so it's best to be used as an embedded web server.

AUTHOR
    Tokuhiro Matsuno

    Kazuhiro Osawa

    Tatsuhiko Miyagawa

LICENSE
    This module is licensed under the same terms as Perl itself.

SEE ALSO
    HTTP::Server::Simple, Plack, HTTP::Server::PSGI