From d22f0efce8589690f8bb76b9e1a49d3db245a69f Mon Sep 17 00:00:00 2001 From: Blaine Jester Date: Mon, 20 Apr 2026 13:10:18 -0700 Subject: [PATCH] Remove expires header from GCS response --- docker/nginx/includes/content/_cache.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/nginx/includes/content/_cache.conf b/docker/nginx/includes/content/_cache.conf index 942b1a74ef..8f83f73cd8 100644 --- a/docker/nginx/includes/content/_cache.conf +++ b/docker/nginx/includes/content/_cache.conf @@ -1,8 +1,9 @@ # location {} settings for /content caching # used by files in this directory, via `include` directive -# ignore cache-control from upstream so this value is authoritative +# ignore 'expires' and 'cache-control' headers from upstream so this value is authoritative proxy_hide_header Cache-Control; +proxy_hide_header Expires; # content is md5-addressed, so cache aggressively for successful responses add_header Cache-Control "public, max-age=31536000, immutable, no-transform";