From cc9d73718256afabefd2a9119e4524d37614d0ea Mon Sep 17 00:00:00 2001 From: yhd Date: Fri, 7 Aug 2026 14:32:36 +0800 Subject: [PATCH] fix(deploy): define SKILLHUB_TRUST_FORWARDED_PROTO in staging compose The nginx template references this variable and envsubst leaves undefined variables untouched, causing nginx to fail with 'unknown skillhub_trust_forwarded_proto variable' when the staging web container starts. Signed-off-by: yhd --- docker-compose.staging.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.staging.yml b/docker-compose.staging.yml index 48d1fd1a..81a5bc6d 100644 --- a/docker-compose.staging.yml +++ b/docker-compose.staging.yml @@ -71,6 +71,7 @@ services: SKILLHUB_API_UPSTREAM: http://server:8080 SKILLHUB_WEB_API_BASE_URL: "" SKILLHUB_PUBLIC_BASE_URL: "" + SKILLHUB_TRUST_FORWARDED_PROTO: "false" depends_on: server: condition: service_healthy