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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user