Protect by default access to API manager vhost (#2033, #2034)

This commit is contained in:
Clément OUDOT 2020-01-10 15:29:33 +01:00
parent dbf6550f6a
commit f26c79da1a
3 changed files with 5 additions and 5 deletions

View File

@ -154,7 +154,7 @@
DocumentRoot __MANAGERSITEDIR__
<Location />
Require all granted
Require all denied
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/javascript text/css

View File

@ -174,11 +174,11 @@
<Location />
<IfVersion >= 2.3>
Require all granted
Require all denied
</IfVersion>
<IfVersion < 2.3>
Order Deny,Allow
Allow from all
Deny from all
</IfVersion>
Options +FollowSymLinks

View File

@ -157,8 +157,8 @@
DocumentRoot __MANAGERSITEDIR__
<Location />
Order Deny,Allow
Allow from all
Order Deny,Allow
Deny from all
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/javascript text/css