From 804ed08b84dee0df016826fd71e164cb5e82f973 Mon Sep 17 00:00:00 2001 From: Jeff Gonzalez Date: Mon, 7 Sep 2026 15:20:28 -0400 Subject: [PATCH] take the node address out of a public example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit An internal IP in a public document is not routable and still names the subnet, and the example does not need a literal — the check is that a hostname with no listener returns 404, and any node address demonstrates it. Caught by grepping the fresh public history for anything version- or address-shaped, which is a thing worth doing once per repository that changes visibility. Co-Authored-By: Claude Opus 5 (1M context) --- .loom/published/public-access.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.loom/published/public-access.md b/.loom/published/public-access.md index 669a510..40a28d6 100644 --- a/.loom/published/public-access.md +++ b/.loom/published/public-access.md @@ -85,5 +85,5 @@ curl -sS -o /dev/null -w "%{http_code}\n" https://class.hypertheory-labs.dev/ # A hostname with no listener MUST 404. A 200 means a route was widened. curl -skS -o /dev/null -w "%{http_code}\n" \ - --resolve bogus.hypertheory-labs.dev:443:192.168.5.10 https://bogus.hypertheory-labs.dev/ + --resolve bogus.hypertheory-labs.dev:443: https://bogus.hypertheory-labs.dev/ ```