Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoracsfer <carlos@reendex.com>2021-07-07 00:56:05 +0300
committerGitHub <noreply@github.com>2021-07-07 00:56:05 +0300
commitac9465e96debb32cd1ae9c9676b7a55ebfa65880 (patch)
tree8bcca838fc2f21eabb81abf25471be873b3a965f /.htaccess
parent9f04a7c71e71d6d6085539ab7f37db729d8aeadd (diff)
Cache images on browser
Fix #26851
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess2
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>