Update the nuancier apache configuration for RHEL7

This commit is contained in:
Pierre-Yves Chibon 2014-11-04 15:42:21 +01:00
parent 1c314a71be
commit f451b1ca27

View file

@ -10,5 +10,15 @@ WSGIScriptAlias /nuancier /var/www/nuancier.wsgi
<Location />
WSGIProcessGroup nuancier
<IfModule mod_authz_core.c>
# Apache 2.4
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order deny,allow
Allow from all
</IfModule>
</Location>