From df7dc88be5fd11f0ea62cf6fe9c6b1e06bb50203 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 7 Oct 2014 12:56:19 +0000 Subject: [PATCH] changing access control stuff for Apache 2.4 again, as openSUSE 13.1 base config uses Deny, which has higher precedence then Require --- doc/rpm-build/apache.conf | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/doc/rpm-build/apache.conf b/doc/rpm-build/apache.conf index c10a6c8c37..e60bf4086f 100644 --- a/doc/rpm-build/apache.conf +++ b/doc/rpm-build/apache.conf @@ -15,17 +15,13 @@ RedirectMatch ^(/principals/users/.*)$ /egroupware/groupdav.php$1 Options FollowSymLinks ExecCGI + AllowOverride None + Order allow,deny + Allow from all # Apache 2.4 - AllowOverride None Require all granted - - # Apache 2.2 - AllowOverride None - Order allow,deny - Allow from all - DirectoryIndex index.html index.php AddHandler cgi-script .cgi AddDefaultCharset Off @@ -49,15 +45,12 @@ RedirectMatch ^(/principals/users/.*)$ /egroupware/groupdav.php$1 php_value post_max_size 65M php_value max_input_vars 3000 + Order allow,deny + Deny from all # Apache 2.4 Require all denied - - # Apache 2.2 - Order allow,deny - Deny from all -