1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-15 12:15:22 +03:00
aports/testing/apache2-mod-perl/apache2-mod-perl.conf
Valery Kartel 48ee788e89 testing/apache2-mod-perl: more refined patch to work with perl 5.22
This patch is replaces the previous one: http://patchwork.alpinelinux.org/patch/851/

- all unused patches and post-install script are removed
- added the latest patch from https://rt.cpan.org/Public/Bug/Display.html?id=101962#txn-1558194
- many tests are fail, so 'make test' is not included in build()
- some minor cleanups in APKBUILD

Now apache not crashes to segfault with this module ;)
2015-11-24 13:02:55 +00:00

11 lines
274 B
Text

LoadModule perl_module modules/mod_perl.so
# For mod_perl 1.0 compatibility, uncomment:
#PerlModule Apache2::compat
<Location /cgi-bin>
AddHandler perl-script .pl
PerlResponseHandler ModPerl::Registry
PerlOptions +ParseHeaders
Options +ExecCGI
</Location>