Compare commits

..

3 commits

Author SHA1 Message Date
64d1147f29
Fix docker file 2025-05-01 00:14:34 +09:00
759907147c
Improve cache control 2025-05-01 00:05:47 +09:00
c248642b2f
Purge CDN cache on deploy 2025-04-30 23:14:55 +09:00

View file

@ -19,9 +19,9 @@
"private, no-store"
(cond
((eq strategy :static)
"public, max-age=31536000, immutable")
"public, max-age=60, s-maxage=31536000")
((eq strategy :dynamic)
"public, max-age=60 stale-while-revalidate=86400, stale-if-error=86400")
"public, max-age=60 s-maxage=300, stale-while-revalidate=86400, stale-if-error=86400")
(t
"private, no-store")))))