Correct the documented Cloudflare fallback URL - #4
Merged
Conversation
HANDOVER.md claimed dream.pages.dev was always available as a fallback. It returns 404. The real hostname is anaesthetic-allergy-log-7ya.pages.dev, because a Pages project's *.pages.dev name is fixed at creation and does not follow later renames — this project was created under an older name. Verified the real URL serves the same production build as the custom domain (identical asset hashes); the only response difference is a Cloudflare bot-management script injected on the custom domain. This matters because HANDOVER.md is what a successor reads when the personal yuson.au domain lapses. A wrong fallback URL there defeats the document's purpose. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
The problem
HANDOVER.md told a successor that
dream.pages.devis "always available as an immediate fallback". It returns HTTP 404.This is the one document someone would reach for if the personal
yuson.audomain lapsed — so a wrong URL there defeats the purpose of writing it.The actual URL
https://anaesthetic-allergy-log-7ya.pages.dev— HTTP 200.A Pages project's
*.pages.devhostname is fixed when the project is first created and does not follow later renames. This project was originally created under a different name, so the CI deploy targeting--project-name dreampublishes correctly but the public hostname still reflects the original.Verified it serves the same production build as the custom domain — identical asset hashes (
index-B6KeY29d.js). The only difference between the two responses is a Cloudflare bot-management script injected on the custom domain.How it surfaced
Checking whether the first CI deploy actually published, rather than trusting
deploy: success. That mattered: the deploy job is written to succeed when it skips, so a green tick alone proves nothing. The steps confirmed wrangler genuinely ran, anddream.yuson.auis live on the new build.Also corrected the same URL in the DNS migration steps and in MAINTAINERS.md.
🤖 Generated with Claude Code