Add a Location tag for static

I got the second +1, so let's re-enable the patch

This reverts commit 0bdeabc8d4.
This commit is contained in:
Patrick Uiterwijk 2015-04-14 18:57:20 +00:00
parent 0bdeabc8d4
commit fb7e6e541b

View file

@ -52,3 +52,15 @@ WSGIScriptAlias /mirrorlist /usr/share/mirrormanager2/mirrorlist_client.wsgi
Allow from all
</IfModule>
</Location>
<Location /static>
<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>