From 13f1878ce5f423f209efd8d98eb4210a32031800 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 19 Feb 2026 18:01:52 -0500 Subject: [PATCH] Fix hostname and TLS config for gateway - Change hostname from antigravity.dev.farh.net to antigravity.farh.net to match the gateway's *.farh.net listener - Set SECURE_CONNECTION=0 since TLS is terminated at the gateway, avoiding the redirect loop caused by the app doing its own HTTP->HTTPS redirect Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- k8s/httproute.yaml | 2 +- k8s/statefulset.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/httproute.yaml b/k8s/httproute.yaml index 50e88bf..9eb777f 100644 --- a/k8s/httproute.yaml +++ b/k8s/httproute.yaml @@ -8,7 +8,7 @@ spec: - name: external namespace: gateway-system hostnames: - - "antigravity.dev.farh.net" + - "antigravity.farh.net" rules: - matches: - path: diff --git a/k8s/statefulset.yaml b/k8s/statefulset.yaml index d474a42..ac54982 100644 --- a/k8s/statefulset.yaml +++ b/k8s/statefulset.yaml @@ -57,7 +57,7 @@ spec: - name: DISPLAY_HEIGHT value: "1080" - name: SECURE_CONNECTION - value: "1" + value: "0" - name: VNC_PASSWORD valueFrom: secretKeyRef: