Add Gitea SSH tunnel via ssh.git.neuralplatform.ai

This commit is contained in:
Will Anderson
2026-04-14 23:53:18 -05:00
parent ad2a1db3e2
commit 87367d4387
+15
View File
@@ -103,6 +103,21 @@ resource "cloudflare_tunnel_config" "legion" {
}
}
# git.neuralplatform.ai — Gitea web UI (HTTP via Traefik)
ingress_rule {
hostname = "git.neuralplatform.ai"
service = "https://traefik.kube-system.svc:443"
origin_request {
no_tls_verify = true
}
}
# ssh.git.neuralplatform.ai — Gitea SSH (direct to NodePort 30022)
ingress_rule {
hostname = "ssh.git.neuralplatform.ai"
service = "ssh://localhost:30022"
}
# Catch-all — must be last
ingress_rule {
service = "http_status:404"