From 7c08543ca400e0e3d1d02867227df19be0767c60 Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Tue, 24 Mar 2026 13:40:31 -0500 Subject: [PATCH] fix: gitea runner uses public URL via CF Access bypass - Added Cloudflare Access bypass for git.neuralplatform.ai/api/actions/* restricted to Legion public IP (72.204.75.49) - Runner now registers and communicates with git.neuralplatform.ai directly - Job containers clone from https://git.neuralplatform.ai (proper name) --- servers/legion/gitea-runner.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/legion/gitea-runner.tf b/servers/legion/gitea-runner.tf index b292466..a6f60a7 100644 --- a/servers/legion/gitea-runner.tf +++ b/servers/legion/gitea-runner.tf @@ -8,7 +8,7 @@ resource "kubernetes_secret" "gitea_runner_secret" { } data = { - GITEA_INSTANCE_URL = "http://gitea.git.svc.cluster.local:3000" + GITEA_INSTANCE_URL = "https://git.neuralplatform.ai" GITEA_RUNNER_REGISTRATION_TOKEN = var.gitea_runner_token } }