Perl

Camelbox Release: 2008.120.0145Z

CamelboxPerl

I'm pleased to announce a new release of Camelbox, 2008.120.0145Z
(April 28th, 2008).

Camelbox Release: 2008.102.0120Z

CamelboxPerl

Yes, it's a new release of Camelbox, 2008.102.0140Z
(April 11th, 2008).

Testing the Final Product

Apache HTTP ServerJavaLighttpd HTTP ServerPerlPHPShell ScriptingSQL

Apache Status/Info Pages

If you turn on the server-status/server-info pages, you'll get valuable info as far as how Apache is configured and what modules it has loaded.

In the main httpd.conf file, I used the Include directive to include the httpd-info.conf file that comes with Apache, and in that file, I enabled both server-status and server-info:

<Location /server-status>
    SetHandler server-status
    Order allow,deny
    Allow from all
</Location>
ExtendedStatus On
<Location /server-info>
    SetHandler server-info
    Order allow,deny
    Allow from all
</Location>
WARNING! The above directives will allow anyone to view your server-status/server-info pages. You can restrict who can view those pages by changing the Order/Allow directives, like this:
<Location /server-info>
    SetHandler server-info
    Order deny,allow
    Deny from all
    Allow from .yourdomain.com localhost your.ip.address.here
</Location>
Separate multiple entries in the Allow from line with spaces, continue long lines with a backslash (\).

SOTHTTPD, 2nd Quarter 2007

Apache HTTP ServerJavaLighttpd HTTP ServerPerlPHPShell Scripting

An August 2007 compilation shoot-out of different HTTP servers (Apache w/Tomcat and Lighttpd), as well as different scripting/CGI languages (Perl, PHP, Java) for use with web applications.

State of the HTTPD

Apache HTTP ServerJavaLighttpd HTTP ServerPerlPHPShell ScriptingTodos

Building Apache and lighthttpd from source. Includes the following modules/software packages:

  • Tomcat, the Java JSP server
  • PHP, either inline or via FastCGI
  • Perl via mod_perl or FastCGI
XML feed

The Current Terror Alert Level is...
Terror Alert Level

All content is © Copyright 2013 by Brian Manning, unless otherwise noted. See Site Credits/Categories pages for website and image credits.