From 127486f2670c1c07299acd04b9a467cf757e6167 Mon Sep 17 00:00:00 2001 From: Jeffrey Alan Scudder Date: Sat, 28 Mar 2026 12:13:27 -0700 Subject: [PATCH] fix: set 60s cache TTL on papers PDFs to prevent stale CDN serving Added _headers file for papers.aesthetic.computer: PDFs get max-age=60 with must-revalidate so Netlify CDN doesn't serve stale versions after oven rebuilds. Co-Authored-By: Claude Opus 4.6 (1M context) --- system/public/papers.aesthetic.computer/_headers | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 system/public/papers.aesthetic.computer/_headers diff --git a/system/public/papers.aesthetic.computer/_headers b/system/public/papers.aesthetic.computer/_headers new file mode 100644 index 000000000..c00af0e0f --- /dev/null +++ b/system/public/papers.aesthetic.computer/_headers @@ -0,0 +1,2 @@ +/*.pdf + Cache-Control: public, max-age=60, must-revalidate -- 2.51.2