Skip to content

Commit

Permalink
Fix: enable access to data/user.css (Apache 2.2 & 2.4)
Browse files Browse the repository at this point in the history
Relates to shaarli#872
Relates to shaarli#993

Signed-off-by: VirtualTam <[email protected]>
  • Loading branch information
virtualtam committed Oct 16, 2017
1 parent a93b620 commit 710291b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions data/.htaccess
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
<IfModule version_module>
<IfVersion >= 2.4>
Require all denied
Require all denied
<Files "user.css">
Require all granted
</Files>
</IfVersion>
<IfVersion < 2.4>
Allow from none
Deny from all
Allow from none
Deny from all
<Files "user.css">
Allow from all
</Files>
</IfVersion>
</IfModule>

Expand Down

0 comments on commit 710291b

Please sign in to comment.