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/vhost_ml.conf | 10 +++++++++- modules/sympa/templates/webapp_sympa.conf | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/modules/sympa/templates/vhost_ml.conf b/modules/sympa/templates/vhost_ml.conf index c15ec069..11aa7ae5 100644 --- a/modules/sympa/templates/vhost_ml.conf +++ b/modules/sympa/templates/vhost_ml.conf @@ -8,5 +8,13 @@ Alias /static-sympa /var/lib/sympa/static_content - Require all granted + + # Apache 2.4 + Require all granted + + + # Apache 2.2 + Order allow,deny + Allow from all + 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