|
NAMEHTTP::Engine::Interface::FCGI - FastCGI interface for HTTP::Engine SYNOPSIS #!/usr/bin/perl
use HTTP::Engine;
HTTP::Engine->new(
interface => {
module => 'FCGI',
args => {
},
request_handler => 'main::handle_request',# or CODE ref
},
)->run();
sub handle_request {
HTTP::Engine::Response->new( body => 'hello, world!' );
}
ATTRIBUTES
AUTHORSTokuhiro Matsuno THANKS TOmany codes copied from Catalyst::Engine::FastCGI. thanks authors of C::E::FastCGI!
|