fix: add registry.neuralplatform.ai to Cloudflare tunnel config

Was missing from tunnel ingress rules, causing 404 on all registry
requests through Cloudflare. Disabled chunked encoding for Docker
push compatibility.
This commit is contained in:
Will Anderson
2026-04-27 16:51:58 -05:00
parent a7a1b6a778
commit a55b53f1bd
+10
View File
@@ -247,6 +247,16 @@ resource "cloudflare_zero_trust_tunnel_cloudflared_config" "legion" {
}
}
# registry.neuralplatform.ai — Docker container registry (no Cloudflare buffering)
ingress_rule {
hostname = "registry.neuralplatform.ai"
service = "https://traefik.kube-system.svc:443"
origin_request {
no_tls_verify = true
disable_chunked_encoding = true
}
}
# vpn.neuralplatform.ai — Headscale coordination server (Tailscale control plane)
# Route directly to Headscale — bypasses Traefik which strips the Upgrade: ts2021 header
# Cloudflare handles TLS termination; internal connection is plain HTTP