apache.pl 280 B

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