Merge pull request #2124 from nextcloud/oc_26591

Cache js, css and woff files for a week
This commit is contained in:
Lukas Reschke 2016-11-17 14:23:31 +01:00 committed by GitHub
commit a0059dfee1
1 changed files with 7 additions and 2 deletions

View File

@ -21,8 +21,13 @@
</IfModule>
# Add cache control for static resources
<FilesMatch "\.(css|js|woff|svg|gif)$">
Header set Cache-Control "max-age=7200, public"
<FilesMatch "\.(css|js|svg|gif)$">
Header set Cache-Control "max-age=15778463"
</FilesMatch>
# Let browsers cache WOFF files for a week
<FilesMatch "\.woff$">
Header set Cache-Control "max-age=604800"
</FilesMatch>
</IfModule>
<IfModule mod_php5.c>