17 lines
420 B
Text
17 lines
420 B
Text
# Use this from the static site root when served by Apache with .htaccess enabled.
|
|
|
|
FileETag MTime Size
|
|
|
|
<IfModule mod_headers.c>
|
|
<Files "index.html">
|
|
Header set Cache-Control "no-cache"
|
|
</Files>
|
|
|
|
<FilesMatch "\.(js|css)$">
|
|
Header set Cache-Control "no-cache"
|
|
</FilesMatch>
|
|
</IfModule>
|
|
|
|
<IfModule mod_deflate.c>
|
|
AddOutputFilterByType DEFLATE text/css application/javascript text/javascript
|
|
</IfModule>
|