Fix new apache 2.4 directives

This commit is contained in:
Laurent Destailleur 2016-07-31 02:26:06 +02:00
parent 64fbff3abc
commit 1b6da075f7
2 changed files with 3 additions and 12 deletions

View File

@ -15,10 +15,7 @@ Alias /dolibarr "WAMPROOT/www/dolibarr/htdocs/"
# NOTE FOR APACHE 2.3: # NOTE FOR APACHE 2.3:
# To restrict access to dolibarr from outside set lines # To restrict access to dolibarr from outside set lines
# #
# <RequireAny> # Require local
# Require ip 127.0.0.1
# Require host localhost
# <RequireAny>
# #
# instead of # instead of
# #

View File

@ -19,17 +19,11 @@ Alias /phpmyadmin "WAMPROOT/apps/phpmyadminWAMPPHPMYADMINVERSION/"
# #
# instead of # instead of
# #
# <RequireAny> # Require local
# Require ip 127.0.0.1
# Require host localhost
# <RequireAny>
# #
<Directory "WAMPROOT/apps/phpmyadminWAMPPHPMYADMINVERSION/"> <Directory "WAMPROOT/apps/phpmyadminWAMPPHPMYADMINVERSION/">
Options Indexes FollowSymLinks MultiViews Options Indexes FollowSymLinks MultiViews
AllowOverride all AllowOverride all
<RequireAny> Require local
Require ip 127.0.0.1
Require host localhost
</RequireAny>
</Directory> </Directory>