NAME
OpenFrame::Server::HTTP - Provide standalone HTTP access to OpenFrame
SYNOPSIS
use OpenFrame::Server::HTTP;
my $h = OpenFrame::Server::HTTP->new(port => 8000);
$h->handle();
DESCRIPTION
OpenFrame::Server::HTTP
provides a standalone webserver which gives web access to an OpenFrame application (without having to set up Apache). The port that the webserver listens on is set by the value of the port key in the configuration, although it defaults to port 8000.
NOTES
This module requires HTTP::Daemon to be installed, and supports HTTP 1.1 (including keepalives) but only spawns one server - so can only be tested by one client at a time.
AUTHOR
Leon Brocard <leon@fotango.com>