docs(web): note browser_ttl: respect_origin in Cache Rule#13
Merged
Conversation
After PR #12 deployed, live Cache-Control returned max-age=14400 from Cloudflare's zone-level Browser Cache TTL default, overriding origin max-age=300. Patched the existing rule (id b85abcfdb1fa4d07a160e88f7cc4fafd) via API to add browser_ttl.mode: respect_origin. Live now serves origin max-age on HTML/metadata paths while keeping the 4-hour zone default for static assets and content-addressed raw files where it's actually desired. This commit keeps the README accurate; the Cloudflare rule itself was updated out-of-band via API.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Documentation-only follow-up to PR #12.
After #12 deployed, live `Cache-Control` on HTML pages was `max-age=14400, stale-while-revalidate=3600` instead of the documented `max-age=300, ...`. Root cause: Cloudflare's zone-level Browser Cache TTL default (4hr) overrode origin's lower `max-age=300`. Edge caching worked correctly (origin Cache-Control was honored for edge TTL); only the browser TTL was being inflated.
Fix was a one-line addition to the existing Cache Rule (rule `b85abcfdb1fa4d07a160e88f7cc4fafd`, ruleset `bec0ea98e0444bcaaf518d626b4c47e2`): `browser_ttl.mode: respect_origin`. Verified live before this commit:
This PR is just the README catching up — the rule fix is already live.