From 5d15a7773b7c613e13041a08e35cf56f538b1b20 Mon Sep 17 00:00:00 2001 From: pvdputte Date: Fri, 11 Oct 2024 23:55:59 +0200 Subject: [PATCH] Debian 11/12 have httpd 2.4.62 with UnsafeAllow3F --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 014013a17..c34a50edd 100755 --- a/configure +++ b/configure @@ -103,6 +103,9 @@ if(!$options->{'nounsafeallow3f'} && !$options->{'unsafeallow3f'}) { if($os eq 'rhel' && $ver >= 8) { $options->{'unsafeallow3f'} = 1; } + if($os eq 'debian' && $ver >= 11) { + $options->{'unsafeallow3f'} = 1; + } } if($options->{'nounsafeallow3f'}) { $options->{'unsafeallow3f'} = '';