From 1ec4b0df6b019ddbfbe74ca311d584401c377c5f Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 13 Jan 2020 17:05:17 +1100 Subject: [PATCH] Bug 17464: Order deny,allow / Deny from all was deprecated in Apache 2.4 and is now a hard error Patch change Apache access control from 2.2 to 2.4 directives. Test plan: 0. Apply patch 1. Build Koha from source 2. Copy or symlink koha-dev/etc/koha-httpd.conf into your relevant Apache directory. 3. Reload Apache 4. Note a lack of syntax errors regarding the "Order" directive --- etc/koha-httpd.conf | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/etc/koha-httpd.conf b/etc/koha-httpd.conf index d0f619efdb..d21fe50415 100644 --- a/etc/koha-httpd.conf +++ b/etc/koha-httpd.conf @@ -31,8 +31,7 @@ # Secure internal stuff - Order deny,allow - Deny from all + Require all denied @@ -171,8 +170,7 @@ # Secure internal stuff - Order deny,allow - Deny from all + Require all denied -- 2.16.4