diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-11-18 11:02:20 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-11-18 11:02:20 +0100 |
commit | b9f2ce2796a6aab3192033e7d02d9c581eb670b8 (patch) | |
tree | 21fa67fdbca671c32841d7bcce1c0c12793a28b5 /.htaccess | |
parent | 8bf7ec26e0b064f55224a202f2137b19eb2432d6 (diff) | |
download | nextcloud-server-b9f2ce2796a6aab3192033e7d02d9c581eb670b8.tar.gz nextcloud-server-b9f2ce2796a6aab3192033e7d02d9c581eb670b8.zip |
Fix loading of .woff2 files in .htaccess
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess index 81a53f9989e..63d50a2b9d7 100644 --- a/.htaccess +++ b/.htaccess @@ -26,7 +26,7 @@ </FilesMatch> # Let browsers cache WOFF files for a week - <FilesMatch "\.woff$"> + <FilesMatch "\.woff2?$"> Header set Cache-Control "max-age=604800" </FilesMatch> </IfModule> |