Skip to content

docs: canonical URL is https://jonbogaty.com/pkgs/#7

Merged
jbdevprimary merged 1 commit into
mainfrom
chore/canonical-url-docs
Apr 15, 2026
Merged

docs: canonical URL is https://jonbogaty.com/pkgs/#7
jbdevprimary merged 1 commit into
mainfrom
chore/canonical-url-docs

Conversation

@jbdevprimary
Copy link
Copy Markdown
Contributor

Updates site config + docs to reflect that jonbogaty.com CNAMEs to jbcom.github.io repo-wide, so GitHub Pages transparently serves /pkgs/ at the apex. No reverse-proxy setup needed after all.

  • astro.config.mjs: site = https://jonbogaty.com (for sitemap + OG)
  • README.md / CLAUDE.md / AGENTS.md / docs/*: canonical URL updated
  • Removes stale 'reverse-proxy pending' notes

Verified live: https://jonbogaty.com/pkgs/ serves the built site.

The operator's apex jonbogaty.com already CNAMEs to jbcom.github.io
repo-wide, so GitHub Pages transparently serves /pkgs/ on the apex
with no reverse proxy needed. Updates astro.config.mjs `site` field
to feed correct absolute URLs into sitemap + OG tags, and aligns
README / CLAUDE.md / AGENTS.md / docs/ to the real canonical URL.
jbcom.github.io/pkgs/ 301-redirects to the canonical URL.
Copilot AI review requested due to automatic review settings April 15, 2026 06:02
@gemini-code-assist
Copy link
Copy Markdown

Warning

You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again!

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 15, 2026

Warning

Rate limit exceeded

@jbdevprimary has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 7 minutes and 47 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 7 minutes and 47 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: a6c46dc0-ae83-4433-a0d0-b44141ac9759

📥 Commits

Reviewing files that changed from the base of the PR and between eefc667 and 6da4a67.

📒 Files selected for processing (6)
  • CLAUDE.md
  • README.md
  • astro.config.mjs
  • docs/ARCHITECTURE.md
  • docs/DEPLOYMENT.md
  • docs/STATE.md
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/canonical-url-docs

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@jbdevprimary jbdevprimary merged commit 1a16fe1 into main Apr 15, 2026
10 checks passed
@jbdevprimary jbdevprimary deleted the chore/canonical-url-docs branch April 15, 2026 06:03
Copy link
Copy Markdown

@amazon-q-developer amazon-q-developer Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR cleanly updates documentation and configuration to reflect the canonical URL change from jbcom.github.io/pkgs to jonbogaty.com/pkgs. The changes are consistent across all files, and the Astro configuration correctly uses site: "https://jonbogaty.com" with base: "/pkgs" for the subpath deployment. The documentation properly explains the CNAME setup and includes important warnings about not adding a public/CNAME file. No blocking issues identified.


You can now have the agent implement changes and create commits directly on your pull request's source branch. Simply comment with /q followed by your request in natural language to ask the agent to make changes.

Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the repo’s canonical/public URL from the GitHub Pages subdomain to the apex-domain subpath (https://jonbogaty.com/pkgs/) and removes now-stale reverse-proxy guidance, aligning docs/config with the current GitHub Pages custom-domain routing setup.

Changes:

  • Update Astro site config to use https://jonbogaty.com for correct absolute URLs (sitemap/OG) while keeping base: /pkgs.
  • Update deployment + architecture docs and README to reference https://jonbogaty.com/pkgs/.
  • Remove “reverse-proxy pending” notes from docs.

Reviewed changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
docs/STATE.md Removes reverse-proxy pending note.
docs/DEPLOYMENT.md Updates production URL + DNS/custom-domain guidance to reflect apex routing.
docs/ARCHITECTURE.md Updates architecture explanation for serving at jonbogaty.com/pkgs/.
astro.config.mjs Sets site to https://jonbogaty.com (keeping base: /pkgs).
README.md Updates public site URL references.
CLAUDE.md Updates public site URL references.

Comment thread docs/ARCHITECTURE.md
Comment on lines +87 to +90
The operator's apex domain `jonbogaty.com` already CNAMEs to
`jbcom.github.io`, so GitHub Pages transparently serves `/pkgs/` at
`https://jonbogaty.com/pkgs/`. `jbcom.github.io/pkgs/` 301-redirects
to the canonical URL.
Copy link

Copilot AI Apr 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

“The operator's apex domain jonbogaty.com already CNAMEs to jbcom.github.io” is DNS-inaccurate for an apex/root record (it usually can’t be a literal CNAME). Reword to something like “is configured to resolve to / point at jbcom.github.io” to avoid implying an invalid DNS record type.

Suggested change
The operator's apex domain `jonbogaty.com` already CNAMEs to
`jbcom.github.io`, so GitHub Pages transparently serves `/pkgs/` at
`https://jonbogaty.com/pkgs/`. `jbcom.github.io/pkgs/` 301-redirects
to the canonical URL.
The operator's apex domain `jonbogaty.com` is already configured to
point at `jbcom.github.io`, so GitHub Pages transparently serves
`/pkgs/` at `https://jonbogaty.com/pkgs/`. `jbcom.github.io/pkgs/`
301-redirects to the canonical URL.

Copilot uses AI. Check for mistakes.
Comment thread README.md
@@ -142,7 +142,7 @@ PY

`deploy.yml` runs on every push to `main` using `withastro/action@v6`.
Copy link

Copilot AI Apr 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This references deploy.yml, but the repo’s Pages workflow file is .github/workflows/cd.yml. Updating this (and any other mentions in the README) will keep the docs consistent with the actual workflow name.

Suggested change
`deploy.yml` runs on every push to `main` using `withastro/action@v6`.
`.github/workflows/cd.yml` runs on every push to `main` using `withastro/action@v6`.

Copilot uses AI. Check for mistakes.
Comment thread docs/DEPLOYMENT.md

Currently served on the GitHub-issued subdomain
(`jbcom.github.io/pkgs`). To serve `jonbogaty.com/pkgs` in the future:
The operator's apex `jonbogaty.com` already CNAMEs to
Copy link

Copilot AI Apr 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The phrase “apex jonbogaty.com already CNAMEs to jbcom.github.io” is DNS-inaccurate: apex/root records generally can’t be a CNAME (some providers offer ALIAS/ANAME flattening). Consider rewording to “resolves to / points at jbcom.github.io” so operators don’t copy an invalid DNS setup.

Suggested change
The operator's apex `jonbogaty.com` already CNAMEs to
The operator's apex `jonbogaty.com` already resolves to

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants