docs: point network dashboard links at https://telemetry.freenet.org - #84
Draft
sanity wants to merge 1 commit into
Draft
docs: point network dashboard links at https://telemetry.freenet.org#84sanity wants to merge 1 commit into
sanity wants to merge 1 commit into
Conversation
The telemetry dashboard now serves over HTTPS from telemetry.freenet.org. The old http://nova.locut.us:3133 URL 301-redirects there, but the plain-HTTP links are worth replacing directly: the slides embed the dashboard in an iframe, and an http:// iframe inside the https:// site is blocked as mixed content rather than redirected. Leaves keys/gateways.toml alone - that is the gateway on :31337, not the dashboard. [AI-assisted - Claude]
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.
Problem
The telemetry dashboard has moved to HTTPS at https://telemetry.freenet.org (nova, via Caddy with a Let's Encrypt cert). The site still linked to
http://nova.locut.us:3133.The old URL now 301-redirects, so plain links would still work. But the slides embed the dashboard in an iframe (
data-background-iframe), and a browser blocks anhttp://iframe inside anhttps://page as mixed content rather than following the redirect. Those embeds are broken until the URL is updated.Approach
Replace the dashboard URL in the four source files that reference it. Display text updated alongside hrefs so the visible label matches where the link goes.
hugo-site/content/quickstart/_index.mdhugo-site/themes/freenet/layouts/shortcodes/network-hero.htmlhugo-site/static/slides/demo/dashboard.htmlhugo-site/static/slides/demo/dashboard-live.htmlhugo-site/static/keys/gateways.tomlis deliberately not changed: that isnova.locut.us:31337, the gateway, which is unrelated to the dashboard. (It matches a naive:3133grep as a substring.)hugo-site/public/is gitignored and regenerated at build time, so it is not touched here.Testing
hugobuild succeeds with no errors or warnings.index.html,quickstart/index.html,presentations/2026-02-06-freenet-lives/index.html, and both demo slides.nova.locut.us:3133references remain in the rendered site (only the unrelated:31337gateway entry).https://telemetry.freenet.org/returns 200 with a valid Let's Encrypt cert, and a real Chromium load reports the dashboard connected (wss://telemetry.freenet.org/ws, status "Live") with zero console errors.[AI-assisted - Claude]