openresty: disable the http_perl_module

I have been experiencing intermittent segfaults inside the perl module on
startup during config parsing, despite not actually using any perl features in
my config.

This creates consistency with the standard nginx packages, and the upstream
openresty binaries.
This commit is contained in:
Jamie McClymont 2020-06-20 14:27:50 +12:00
parent dca001e923
commit 22906fc7a5

View File

@ -15884,7 +15884,9 @@ in
openafs = callPackage ../servers/openafs/1.6 { tsmbac = null; ncurses = null; };
openafs_1_8 = callPackage ../servers/openafs/1.8 { tsmbac = null; ncurses = null; };
openresty = callPackage ../servers/http/openresty { };
openresty = callPackage ../servers/http/openresty {
withPerl = false;
};
opensmtpd = callPackage ../servers/mail/opensmtpd { };
opensmtpd-extras = callPackage ../servers/mail/opensmtpd/extras.nix { };