diff options
author | acsfer <carlos@reendex.com> | 2021-07-06 23:56:05 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-07-07 17:12:04 +0000 |
commit | 8c6ca5d835dc19e6f796dedf89a9bab25338ca90 (patch) | |
tree | 692a57d4d4e6adf98f33927faf22060d88368646 /.htaccess | |
parent | 2054614358a2764fc65309a03291a1dbcb4ab76a (diff) | |
download | nextcloud-server-8c6ca5d835dc19e6f796dedf89a9bab25338ca90.tar.gz nextcloud-server-8c6ca5d835dc19e6f796dedf89a9bab25338ca90.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> |