doc/hosted-kolab.conf doc/kolab-webadmin.conf

Jeroen van Meeuwen vanmeeuwen at kolabsys.com
Thu Sep 19 15:48:10 CEST 2013


 doc/hosted-kolab.conf   |   11 +++++++++--
 doc/kolab-webadmin.conf |   11 +++++++++--
 2 files changed, 18 insertions(+), 4 deletions(-)

New commits:
commit 6d132a638c03de4e571dace6aaeebaaea8d1c315
Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>
Date:   Thu Sep 19 14:47:48 2013 +0100

    Add httpd 2.4+ compatible configuration

diff --git a/doc/hosted-kolab.conf b/doc/hosted-kolab.conf
index 2b3da86..178c6a6 100644
--- a/doc/hosted-kolab.conf
+++ b/doc/hosted-kolab.conf
@@ -30,8 +30,15 @@ Alias /hosted-kolab /usr/share/kolab-webadmin/hosted/
 
     DirectoryIndex index.php
     AllowOverride All
-    Order Allow,Deny
-    Allow from All
+
+    <ifModule mod_authz_core.c>
+        Require all granted
+    </ifModule>
+    <ifModule !mod_authz_core.c>
+        Order Allow,Deny
+        Allow from All
+    </ifModule>
+
 </Directory>
 
 
diff --git a/doc/kolab-webadmin.conf b/doc/kolab-webadmin.conf
index 26f24cd..3cf8e02 100644
--- a/doc/kolab-webadmin.conf
+++ b/doc/kolab-webadmin.conf
@@ -30,8 +30,15 @@ Alias /kolab-webadmin /usr/share/kolab-webadmin/public_html/
 
     DirectoryIndex index.php
     AllowOverride All
-    Order Allow,Deny
-    Allow from All
+
+    <ifModule mod_authz_core.c>
+        Require all granted
+    </ifModule>
+    <ifModule !mod_authz_core.c>
+        Order Allow,Deny
+        Allow from All
+    </ifModule>
+
 </Directory>
 
 




More information about the commits mailing list