From 22653eeb24b6297384b856cc061a571717d291d9 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 9 Feb 2017 14:39:37 -0500 Subject: [PATCH] Cache assets longer --- website/scripts/deploy.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/scripts/deploy.sh b/website/scripts/deploy.sh index 8d1471dbf..338ec65c1 100755 --- a/website/scripts/deploy.sh +++ b/website/scripts/deploy.sh @@ -64,6 +64,7 @@ if [ -z "$NO_UPLOAD" ]; then echo "Overriding javascript mime-types..." s3cmd \ --mime-type="application/javascript" \ + --add-header="Cache-Control: max-age=31536000" \ --exclude "*" \ --include "*.js" \ --recursive \ @@ -72,6 +73,7 @@ if [ -z "$NO_UPLOAD" ]; then echo "Overriding css mime-types..." s3cmd \ --mime-type="text/css" \ + --add-header="Cache-Control: max-age=31536000" \ --exclude "*" \ --include "*.css" \ --recursive \ @@ -80,6 +82,7 @@ if [ -z "$NO_UPLOAD" ]; then echo "Overriding svg mime-types..." s3cmd \ --mime-type="image/svg+xml" \ + --add-header="Cache-Control: max-age=31536000" \ --exclude "*" \ --include "*.svg" \ --recursive \