# # mod_perl - Perl Interpreter for Apache2 # # Load the Perl module: LoadModule perl_module @baselibdir@/httpd/modules/mod_perl.so # Define the files mod-perl's responsible for AddHandler perl-script pl # Set this if you want perl-scripts to be # executed from only one directory #Alias /perl/ /srv/www/htdocs/perl/ # # SetHandler perl-script # PerlResponseHandler ModPerl::Registry # PerlOptions +ParseHeaders # Options +ExecCGI # Require all granted # # Set this if you want perl-scripts to be # executed from everywhere in the htdocs directory # (default) # mod_perl mode SetHandler perl-script PerlResponseHandler ModPerl::Registry PerlOptions +ParseHeaders Options +ExecCGI # To include perl handlers from a custom location, see # https://perl.apache.org/docs/2.0/user/intro/start_fast.html#Handler_Modules