From 0e17a6151c558a8b11095d657b8672fbb4451338 Mon Sep 17 00:00:00 2001 From: scanash00 Date: Sat, 5 Apr 2025 23:18:44 -0800 Subject: [PATCH] fix: fixed serviceName on the template.toml of stack auth --- blueprints/stack-auth/template.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/blueprints/stack-auth/template.toml b/blueprints/stack-auth/template.toml index 8cf03e1..f98c761 100644 --- a/blueprints/stack-auth/template.toml +++ b/blueprints/stack-auth/template.toml @@ -1,8 +1,8 @@ [variables] main_domain = "${domain}" postgres_password = "${password:32}" -stack_auth_api_url = "${main_domain}:8102" -stack_auth_dashboard_url = "${main_domain}:8101" +stack_auth_api_url = "${main_domain}" +stack_auth_dashboard_url = "${main_domain}" stack_auth_postgres_host = "db" [config.env] @@ -23,13 +23,13 @@ STACK_RUN_MIGRATIONS = true STACK_RUN_SEED_SCRIPT = true [[config.domains]] -serviceName = "stack-auth-api" +serviceName = "stack-auth" port = 8102 host = "${stack_auth_api_url}" path = "/" [[config.domains]] -serviceName = "stack-auth-dashboard" +serviceName = "stack-auth" port = 8101 host = "${stack_auth_dashboard_url}" path = "/"