| 1234567891011121314151617 |
- ##
- ## apache.pl -- Apache Perl/mod_perl Startup Script
- ##
- $ENV{MOD_PERL} or die "you are not running mod_perl";
- # strict run-time environment
- use strict;
- # extended module search path
- use lib qw();
- # detailed error messages
- use Carp();
- $SIG{__WARN__} = \&Carp::cluck;
|