Initial documentation of the hubris Proxmox homelab as a cross-linked markdown wiki. Per-node pages, cross-cutting infrastructure pages, an investigation log, and an operations cheatsheet. Each node and topic ends with a Changelog section so changes can be tracked in-place going forward. Refreshed against live state on 2026-04-28 — 14 active LXCs (109 syncthing currently stopped) + 1 VM (108 haos). Reflects post-A/B-test state of the 2026-04-21 hubris crash-loop investigation.
5.7 KiB
Public ingress — VPS traefik + cert mirror
How home services reach the open internet without exposing the home network. Two-stage pattern: traefik on the IONOS VPS terminates TLS at the public edge, then reverse-proxies over the netbird mesh to home Caddy / direct backends.
The shape
Public client
│ *.hubris.network → 82.165.190.79 (IONOS wildcard)
▼
[VPS traefik] priority 1: HostSNI(*) → netbird-proxy:8443 ← netbird control plane
priority 10: per-host HTTP routers ← home services
│ HTTP over netbird mesh
▼
[Home backend on 192.168.8.x]
Mesh clients see dnsmasq on LXC 124 → 192.168.8.175 → home Caddy (121), unchanged. The two paths are independent.
Why this shape
- VPS traefik already has a HostSNI(*) TCP passthrough at priority 1 so netbird's own ingress (
netbird.hubris.network, future*.proxy.hubris.network) is unaffected. - Per-hostname HTTP file-provider routers at priority 10 win over the passthrough for the listed hosts and let traefik terminate TLS itself for those.
- Traefik's own ACME (
letsencryptresolver) fails on this box: HostSNI(*) grabs TLS-ALPN-01 challenges before traefik'sallowACMEByPass=truecan respond. Solution: home Caddy obtains certs via IONOS DNS-01 (no conflict) and the VPS mirrors the result over.
Components
On the VPS (82.165.190.79)
/opt/traefik-dynamic.yaml— file-watched dynamic config. Onehttp.routers.<name>-public+ onehttp.services.<name>-publicper exposed service, plus one entry in the top-leveltls.certificateslist per hostname.- Let's-Encrypt-effective directory:
/letsencrypt/inside the traefik container, backed by the host-side docker volumeopt_netbird_traefik_letsencrypt. - Backups before edits:
cp /opt/traefik-dynamic.yaml /opt/traefik-dynamic.yaml.bak.$(date +%s)— several bak files live alongside.
On the PVE host (192.168.8.77)
/usr/local/bin/hubris-public-cert-sync.sh— runs daily viahubris-public-cert-sync.timer. Maps source hostname → VPS cert filenames in a bash assoc array. For each mapping:pct pullcert+key from Caddy (121)'s store, diff against the VPS copy, scp only on change.- Filenames are stable per host so the dynamic.yaml never needs editing on renewal — traefik file-watches and hot-reloads the cert.
Services currently exposed
| Hostname | Path scope | Backend | Middlewares | Cert files on VPS |
|---|---|---|---|---|
artifacto.hubris.network |
/p/*, /static/*, /healthz |
192.168.8.205:3100 |
artifacto-strip-sso + artifacto-ratelimit (50 rps / 100 burst) |
fullchain.crt / privkey.key |
blog.hubris.network |
whole host | 192.168.8.205:8080 |
blog-ratelimit (100 rps / 200 burst) |
blog.fullchain.crt / blog.privkey.key |
artifacto-strip-sso blanks inbound X-Authentik-* and X-Artifacto-Gateway so external clients can't spoof the SSO auto-login header contract. Path split is enforced at the VPS router rule, not by home Caddy. See Artifacto on apps (105).
Recipe — exposing another service
- Ensure home Caddy on LXC 121 already serves the hostname (cert exists at
/var/lib/caddy/.local/share/caddy/certificates/acme-v02.api.letsencrypt.org-directory/<host>/). - Add an entry to
HOSTSin/usr/local/bin/hubris-public-cert-sync.shmapping the hostname → VPS filenames. Run once:systemctl start hubris-public-cert-sync.service. Confirm the cert landed. - Edit
/opt/traefik-dynamic.yamlon the VPS:- Add to
tls.certificates: paths/letsencrypt/<crt>and/letsencrypt/<key>. - Add
http.routers.<host>-public:rule: 'Host(\`)'(or with path matchers if scope-gating),entryPoints: [websecure],priority: 10,tls: {},service: -public,middlewares: [...]`. - Add a ratelimit middleware under
http.middlewaresif wanted. - Add
http.services.<host>-public.loadBalancer.servers[0].url: 'http://<lan-ip>:<port>'.
- Add to
- Verify:
ssh root@100.122.165.149 'curl -skI --resolve <host>:443:127.0.0.1 https://<host>/' # 2xx/3xx curl -skI --resolve <host>:443:<vps-public-ip> https://<host>/ # same - No DNS edit needed — the IONOS wildcard already points at the VPS.
What does NOT follow this pattern
netbird.hubris.network(and any future*.proxy.hubris.network) uses the netbird-proxy / HostSNI passthrough path. Netbird handles its own cert via ACME cleanly because it is the passthrough target.
Related
- DNS split-horizon
- Caddy (121) — cert source, internal counterpart
- Mesh migration — netbird is the transport between VPS and home
- VPS hardening — fail2ban / nftables that the access logs feed
- Artifacto on apps (105) — first publicly-exposed service
Changelog
2026-04-28 — wiki entry created
Initial documentation.
2026-04-23 — blog.hubris.network exposed
WriteFreely on apps (105). Whole host is public.
2026-04-22 — pattern established with Artifacto
First service through the file-provider router. IONOS wildcard moved to the VPS this day. Cert mirror script + timer deployed on the PVE host.