From: Jeff King Date: Sun, 9 Jun 2013 08:08:45 +0000 (-0400) Subject: t/lib-httpd/apache.conf: load compat access module in apache 2.4 X-Git-Tag: v1.8.3.4~27^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/bb3f7ccadb5270e060cfbbb44f9c80a8c65cc449?ds=inline t/lib-httpd/apache.conf: load compat access module in apache 2.4 In apache 2.4, the "Order" directive has gone away in favor of a new system in mod_authz_host. However, since we want our config file to remain compatible across multiple Apache versions, we can use mod_access_compat to keep using the older style. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/t/lib-httpd/apache.conf b/t/lib-httpd/apache.conf index 48e8c8f717..eb44322b1b 100644 --- a/t/lib-httpd/apache.conf +++ b/t/lib-httpd/apache.conf @@ -54,6 +54,9 @@ ErrorLog error.log LoadModule authz_core_module modules/mod_authz_core.so + + LoadModule access_compat_module modules/mod_access_compat.so + PassEnv GIT_VALGRIND