You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
280 B
17 lines
280 B
23 years ago
|
##
|
||
|
## 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;
|
||
|
|