Fix: enable access to data/user.css (Apache 2.2 & 2.4)

Relates to https://github.com/shaarli/Shaarli/issues/872
Relates to https://github.com/shaarli/Shaarli/issues/993

Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
VirtualTam 2017-10-16 19:39:16 +02:00
parent a93b620a35
commit 710291b164
1 changed files with 9 additions and 3 deletions

View File

@ -1,10 +1,16 @@
<IfModule version_module>
<IfVersion >= 2.4>
Require all denied
<Files "user.css">
Require all granted
</Files>
</IfVersion>
<IfVersion < 2.4>
Allow from none
Deny from all
<Files "user.css">
Allow from all
</Files>
</IfVersion>
</IfModule>