Blame SOURCES/perl.conf

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