diff options
author | acsfer <carlos@reendex.com> | 2021-07-06 23:56:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-06 23:56:05 +0200 |
commit | ac9465e96debb32cd1ae9c9676b7a55ebfa65880 (patch) | |
tree | 8bcca838fc2f21eabb81abf25471be873b3a965f /.htaccess | |
parent | 9f04a7c71e71d6d6085539ab7f37db729d8aeadd (diff) | |
download | nextcloud-server-ac9465e96debb32cd1ae9c9676b7a55ebfa65880.tar.gz nextcloud-server-ac9465e96debb32cd1ae9c9676b7a55ebfa65880.zip |
Cache images on browser
Fix #26851
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess index 87feb31fd88..2a6a0cbfac6 100644 --- a/.htaccess +++ b/.htaccess @@ -39,7 +39,7 @@ </IfModule> # Add cache control for static resources - <FilesMatch "\.(css|js|svg|gif)$"> + <FilesMatch "\.(css|js|svg|gif|png|jpg|ico)$"> Header set Cache-Control "max-age=15778463" </FilesMatch> |