Bauk HTTP Server 2.0.10 (Stable branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Bauk HTTP Server 2.0.10 (Stable branch)
# 1  
Old 06-06-2008
Bauk HTTP Server 2.0.10 (Stable branch)

Bauk HTTP Server is a high-performance Web server for Unix-like operating systems. Bauk includes many advanced features such as full HTTP/1.1 standard compliance, CGI/1.1 standard compliance, Virtual Hosts, Virtual Host aliases, domain name matching, HTTP authentication, etc. From series 2.0, Bauk brings full support for dynamic pages/Webscripts in PHP, Perl, server-side JavaScript, Python, and Tcl, providing the power of script-enabled pages and relatively easy management.License: Other/Proprietary LicenseChanges:
This release adds improved support for PHP,Python, and server-sideJavaScript dynamic pages, native 64bit support,and performanceoptimizations.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Simple HTTP server in GAWK

Hi, Not sure if this post belongs to this forum but I have been trying every so often to setup a simple http server in awk. After a couple of try and errors I finally came across this: REMCONF - TCP/IP Internetworking With `gawk' This tutorial is not to cut and paste without change, so here... (0 Replies)
Discussion started by: ripat
0 Replies

2. Solaris

Installing Oracle HTTP Server

Hi, i am trying to install Oracle 10g Companion Products on a Solaris 5.9 server. At the end of the installation the configuration assistant fails and it's unable to start the HTTP Server. Below is the error opmnctl: starting opmn and all managed processes... Failed to get IP for ... (0 Replies)
Discussion started by: saharookiedba
0 Replies

3. Linux

HTTP server

Hello all, Please tell me that how to configure a HTTP server in Fedora Core 3 Also tell me about WEB HOSTING under Linux. (4 Replies)
Discussion started by: jaibw
4 Replies

4. Cybersecurity

List of HTTP/FTP-clients on a server

The other day, a friend of mine had his Linux webserver compromised because he was running a vulnerable PHP-script. The "hacker" had used a malformed URL to include a wget-command to fetch some stuff off the net and install it in /dev/shm where it ran undetected. Fortunately, the webserver ran as a... (2 Replies)
Discussion started by: indo1144
2 Replies
Login or Register to Ask a Question
CGI::Application::Server(3pm)				User Contributed Perl Documentation			     CGI::Application::Server(3pm)

NAME
CGI::Application::Server - A simple HTTP server for developing with CGI::Application SYNOPSIS
use CGI::Application::Server; use MyCGIApp; use MyCGIApp::Admin; use MyCGI::App::Account::Dispatch; use MyCGIApp::DefaultApp; my $server = CGI::Application::Server->new(); my $object = MyOtherCGIApp->new(PARAMS => { foo => 1, bar => 2 }); $server->document_root('./htdocs'); $server->entry_points({ '/' => 'MyCGIApp::DefaultApp', '/index.cgi' => 'MyCGIApp', '/admin' => 'MyCGIApp::Admin', '/account' => 'MyCGIApp::Account::Dispatch', '/users' => $object, '/static' => '/usr/local/htdocs', }); $server->run(); DESCRIPTION
This is a simple HTTP server for for use during development with CGI::Application. At this moment, it serves our needs in a very basic way. The plan is to release early and release often, and add features when we need them. That said, we welcome any and all patches, tests and feature requests (the ones with which are accompanied by failing tests will get priority). METHODS
new ($port) This acts just like "new" for HTTP::Server::Simple, except it will initialize instance slots that we use. handle_request This will check the request uri and dispatch appropriately, either to an entry point, or serve a static file (html, jpeg, gif, etc). entry_points (?$entry_points) This accepts a HASH reference in $entry_points, which maps server entry points (uri) to CGI::Application or CGI::Application::Dispatch class names or objects or to directories from which static content will be served by HTTP::Server::Simple::Static. See the SYNOPSIS above for examples. is_valid_entry_point ($uri) This attempts to match the $uri to an entry point. document_root (?$document_root) This is the server's document root where all static files will be served from. CAVEATS
This is a subclass of HTTP::Server::Simple and all of its caveats apply here as well. BUGS
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. CODE COVERAGE
I use Devel::Cover to test the code coverage of my tests, below is the Devel::Cover report on this module's test suite. ---------------------------- ------ ------ ------ ------ ------ ------ ------ File stmt bran cond sub pod time total ---------------------------- ------ ------ ------ ------ ------ ------ ------ ...CGI/Application/Server.pm 94.4 80.0 53.3 100.0 100.0 100.0 88.3 Total 94.4 80.0 53.3 100.0 100.0 100.0 88.3 ---------------------------- ------ ------ ------ ------ ------ ------ ------ ACKNOWLEDGEMENTS
The HTTP response handling was shamelessly stolen from HTTP::Request::AsCGI by chansen AUTHOR
Stevan Little <stevan@iinteractive.com> Rob Kinyon <rob.kinyon@iinteractive.com> Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
Copyright 2006 by Infinity Interactive, Inc. <http://www.iinteractive.com> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-01-27 CGI::Application::Server(3pm)