From f8ea0d7798a3f5741d8a22072fa0729585db3e1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C3=A9cureuil?= Date: Thu, 20 Apr 2017 08:52:17 +0200 Subject: Fix use under apache 2.2 --- modules/sympa/templates/webapp_sympa.conf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'modules/sympa/templates/webapp_sympa.conf') diff --git a/modules/sympa/templates/webapp_sympa.conf b/modules/sympa/templates/webapp_sympa.conf index 2bde74e2..dbaba342 100644 --- a/modules/sympa/templates/webapp_sympa.conf +++ b/modules/sympa/templates/webapp_sympa.conf @@ -3,5 +3,13 @@ AddHandler fastcgi-script .fcgi DirectoryIndex wwsympa-wrapper.fcgi - Require all granted + + # Apache 2.4 + Require all granted + + + # Apache 2.2 + Order allow,deny + Allow from all + -- cgit v1.2.1