diff options
author | ArthurHoaro <arthur@hoa.ro> | 2018-01-30 19:15:30 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2018-01-30 19:15:30 +0100 |
commit | a74184e1b0a9d503e1ea75812583967e7110c2f2 (patch) | |
tree | d596a0af4c819509d0bea8d5bdaf9041e7e77808 /data | |
parent | 57e4a974f7332ec694822ec61b8527cc31152798 (diff) | |
parent | 99a554904498d4d6985216568b32833c73e9825f (diff) | |
download | Shaarli-a74184e1b0a9d503e1ea75812583967e7110c2f2.tar.gz Shaarli-a74184e1b0a9d503e1ea75812583967e7110c2f2.tar.zst Shaarli-a74184e1b0a9d503e1ea75812583967e7110c2f2.zip |
Merge tag 'v0.9.4' into latest
Release v0.9.4
Diffstat (limited to 'data')
-rw-r--r-- | data/.htaccess | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/data/.htaccess b/data/.htaccess index f601c1ee..1d49da37 100644 --- a/data/.htaccess +++ b/data/.htaccess | |||
@@ -1,10 +1,16 @@ | |||
1 | <IfModule version_module> | 1 | <IfModule version_module> |
2 | <IfVersion >= 2.4> | 2 | <IfVersion >= 2.4> |
3 | Require all denied | 3 | Require all denied |
4 | <Files "user.css"> | ||
5 | Require all granted | ||
6 | </Files> | ||
4 | </IfVersion> | 7 | </IfVersion> |
5 | <IfVersion < 2.4> | 8 | <IfVersion < 2.4> |
6 | Allow from none | 9 | Allow from none |
7 | Deny from all | 10 | Deny from all |
11 | <Files "user.css"> | ||
12 | Allow from all | ||
13 | </Files> | ||
8 | </IfVersion> | 14 | </IfVersion> |
9 | </IfModule> | 15 | </IfModule> |
10 | 16 | ||