The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

use strict;
use Apache;
use Apache::Constants qw(:common);

my $r = Apache->request;

$r->content_type('text/plain');
$r->send_http_header;

$r->print("mod_perl OK\n");

OK;