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
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)