Blame SOURCES/perl.conf

11431e
#
11431e
# Mod_perl incorporates a Perl interpreter into the Apache web server,
11431e
# so that the Apache web server can directly execute Perl code.
11431e
# Mod_perl links the Perl runtime library into the Apache web server
11431e
# and provides an object-oriented Perl interface for Apache's C
11431e
# language API.  The end result is a quicker CGI script turnaround
11431e
# process, since no external Perl interpreter has to be started.
11431e
#
11431e
11431e
# Uncomment this line to globally enable warnings, which will be
11431e
# written to the server's error log.  Warnings should be enabled
11431e
# during the development process, but should be disabled on a
11431e
# production server as they affect performance.
11431e
#
11431e
#PerlSwitches -w
11431e
11431e
# Uncomment this line to enable taint checking globally.  When Perl is
11431e
# running in taint mode various checks are performed to reduce the
11431e
# risk of insecure data being passed to a subshell or being used to
11431e
# modify the filesystem.  Unfortunately many Perl modules are not
11431e
# taint-safe, so you should exercise care before enabling it on a
11431e
# production server.
11431e
#
11431e
#PerlSwitches -T
11431e
11431e
# This will allow execution of mod_perl to compile your scripts to
11431e
# subroutines which it will execute directly, avoiding the costly
11431e
# compile process for most requests.
11431e
#
11431e
#Alias /perl /var/www/perl
11431e
#<Directory /var/www/perl>
11431e
#    SetHandler perl-script
11431e
#    PerlResponseHandler ModPerl::Registry
11431e
#    PerlOptions +ParseHeaders
11431e
#    Options +ExecCGI
11431e
#</Directory>
11431e
11431e
# This will allow remote server configuration reports, with the URL of
11431e
#  http://servername/perl-status
11431e
# Change the ".example.com" to match your domain to enable.
11431e
#
11431e
#<Location /perl-status>
11431e
#    SetHandler perl-script
11431e
#    PerlResponseHandler Apache2::Status
11431e
#    Order deny,allow
11431e
#    Deny from all
11431e
#    Allow from .example.com
11431e
#</Location>