Four Calorie HTTP Server 3.0.6 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Four Calorie HTTP Server 3.0.6 (Default branch)
# 1  
Old 07-12-2008
Four Calorie HTTP Server 3.0.6 (Default branch)

Four Calorie Http Server is a very simple, multi-threaded, caching Web server for FreeBSD 6 and 7. The current status of the server places it as a "getter only" server, while the back-end "post" libraries are under development. The architecture is unique with respect to the back-end "post" processing, which will ultimately be accomplished via the use of .Net assemblies on Windows or Mono.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
HTTP::Server::Simple::Static(3pm)			User Contributed Perl Documentation			 HTTP::Server::Simple::Static(3pm)

NAME
HTTP::Server::Simple::Static - Serve static files with HTTP::Server::Simple VERSION
This documentation refers to HTTP::Server::Simple::Static version 0.07 SYNOPSIS
package MyServer; use base qw(HTTP::Server::Simple::CGI); use HTTP::Server::Simple::Static; sub handle_request { my ( $self, $cgi ) = @_; return $self->serve_static( $cgi, $webroot ); } package main; my $server = MyServer->new(); $server->run(); DESCRIPTION
this mixin adds a method to serve static files from your HTTP::Server::Simple subclass. SUBROUTINES
/METHODS serve_static Takes a base directory and a web path, and tries to serve a static file. Returns 0 if the file does not exist, returns 1 on success. BUGS AND LIMITATIONS
Bugs or wishlist requests should be submitted via http://rt.cpan.org/ SEE ALSO
AUTHOR
Stephen Quinney "sjq-perl@jadevine.org.uk" Thanks to Marcus Ramberg "marcus@thefeed.no" and Simon Cozens for initial implementation. LICENSE AND COPYRIGHT
Copyright 2006 - 2008. Stephen Quinney "sjq-perl@jadevine.org.uk" You may distribute this code under the same terms as Perl itself. perl v5.14.2 2012-06-30 HTTP::Server::Simple::Static(3pm)