mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-08 06:59:28 +01:00
* Apache 2.4 and RHEL 7 installation fixes
This commit is contained in:
parent
d433c4f240
commit
dab3d0fb8d
@ -15,9 +15,17 @@ RedirectMatch ^(/principals/users/.*)$ /egroupware/groupdav.php$1
|
|||||||
|
|
||||||
<Directory /usr/share/egroupware/>
|
<Directory /usr/share/egroupware/>
|
||||||
Options FollowSymLinks ExecCGI
|
Options FollowSymLinks ExecCGI
|
||||||
AllowOverride None
|
<IfModule mod_authz_core.c>
|
||||||
Order allow,deny
|
# Apache 2.4
|
||||||
Allow from all
|
AllowOverride None
|
||||||
|
Require all granted
|
||||||
|
</IfModule>
|
||||||
|
<IfModule !mod_authz_core.c>
|
||||||
|
# Apache 2.2
|
||||||
|
AllowOverride None
|
||||||
|
Order allow,deny
|
||||||
|
Allow from all
|
||||||
|
</IfModule>
|
||||||
DirectoryIndex index.html index.php
|
DirectoryIndex index.html index.php
|
||||||
AddHandler cgi-script .cgi
|
AddHandler cgi-script .cgi
|
||||||
AddDefaultCharset Off
|
AddDefaultCharset Off
|
||||||
@ -41,8 +49,15 @@ RedirectMatch ^(/principals/users/.*)$ /egroupware/groupdav.php$1
|
|||||||
php_value post_max_size 65M
|
php_value post_max_size 65M
|
||||||
php_value max_input_vars 3000
|
php_value max_input_vars 3000
|
||||||
<Files ~ "\.inc\.php$">
|
<Files ~ "\.inc\.php$">
|
||||||
Order allow,deny
|
<IfModule mod_authz_core.c>
|
||||||
Deny from all
|
# Apache 2.4
|
||||||
|
Require all denied
|
||||||
|
</IfModule>
|
||||||
|
<IfModule !mod_authz_core.c>
|
||||||
|
# Apache 2.2
|
||||||
|
Order allow,deny
|
||||||
|
Deny from all
|
||||||
|
</IfModule>
|
||||||
</Files>
|
</Files>
|
||||||
# Enable the following block in order to redirect logins to HTTPS:
|
# Enable the following block in order to redirect logins to HTTPS:
|
||||||
#RewriteEngine On
|
#RewriteEngine On
|
||||||
|
Loading…
Reference in New Issue
Block a user