From 2b1755f87eecb6311c3c46aec2cd9415d0262599 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 9 Feb 2017 14:40:26 -0500 Subject: [PATCH] Cache static 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 7ac655f0a..80b23183a 100755 --- a/website/scripts/deploy.sh +++ b/website/scripts/deploy.sh @@ -67,6 +67,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 \ @@ -75,6 +76,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 \ @@ -83,6 +85,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 \