Allow everyone on /releases

This commit is contained in:
Pierre-Yves Chibon 2015-06-05 13:49:14 +02:00
parent dd7253c6ff
commit c3764014a2

View file

@ -35,3 +35,17 @@ WSGIScriptAlias / /var/www/pagure.wsgi
Allow from all
</IfModule>
</Location>
<Location /releases>
WSGIProcessGroup pagure
<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>