summaryrefslogtreecommitdiffstats
path: root/perl/mod_perl/mod_perl.conf
diff options
context:
space:
mode:
author Heinz Wiesinger2012-09-02 18:58:40 +0200
committer Heinz Wiesinger2012-09-02 18:58:40 +0200
commita5b81ed1812d0073cf16fddcdb5b5951e53b6614 (patch)
treeb43bf68b886dc763f63dd0b31b998ea86f798315 /perl/mod_perl/mod_perl.conf
parent9849c6fdcbd5785a1515d7eac66dcfcf65159bcc (diff)
downloadslackbuilds-a5b81ed1812d0073cf16fddcdb5b5951e53b6614.tar.gz
perl/mod_perl: Removed.
This is not compatible with httpd 2.4 yet. Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Diffstat (limited to 'perl/mod_perl/mod_perl.conf')
-rw-r--r--perl/mod_perl/mod_perl.conf32
1 files changed, 0 insertions, 32 deletions
diff --git a/perl/mod_perl/mod_perl.conf b/perl/mod_perl/mod_perl.conf
deleted file mode 100644
index 5135090fe6..0000000000
--- a/perl/mod_perl/mod_perl.conf
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# 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/
-#<Location /perl/>
-# SetHandler perl-script
-# PerlResponseHandler ModPerl::Registry
-# PerlOptions +ParseHeaders
-# Options +ExecCGI
-# Order allow,deny
-# Allow from all
-#</Location>
-
-# Set this if you want perl-scripts to be
-# executed from everywhere in the htdocs directory
-# (default)
-<Files *.pl>
- # mod_perl mode
- SetHandler perl-script
- PerlResponseHandler ModPerl::Registry
- PerlOptions +ParseHeaders
- Options +ExecCGI
-</Files>