Skip to content

Network Diagram

Drop the network diagram(s) from the CC repo in here. Starlight supports MDX, so you can embed images, SVGs, or even interactive diagrams (e.g., via Mermaid or an <iframe>).

Diagrams live in the cc repo. Copy or symlink them into src/assets/network/ and reference them like this:

![Home network topology](../../assets/network/home-topology.svg)
  • Home LAN — 192.168.1.0/24. Router, switch, wireless APs, wired drops.
  • Machine IPs — who sits where on the LAN (see Machines).
  • VPN / Tailscale (if any) — how James reaches the home network from outside.
  • VPS edge — Cloudflare in front of Traefik, routing to Kong/n8n/webhook-receiver.
  • DNS ownership — which domains live at Cloudflare, which at the registrar, which at Hostinger.

If you want a quick text-driven diagram, Starlight renders Mermaid via a plugin. Simple example:

graph LR
MBP[MacBook Pro] --> LAN[Home LAN]
Studio[Mac Studio] --> LAN
RemoteMac[Remote Mac] --> LAN
LAN --> Router[Router]
Router --> Internet((Internet))
Internet --> CF[Cloudflare]
CF --> VPS[VPS<br/>Hostinger]
VPS --> Supabase[(Supabase)]
VPS --> N8N[n8n]
VPS --> Webhook[webhook-receiver]

Install @astrojs/starlight-theme-rapide or a Mermaid plugin when you get around to it.