From 549c11018c1442bd535e920e41b5c638746787d9 Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Wed, 5 Aug 2026 22:24:57 +0200 Subject: [PATCH] fix: domain with :443 port for SSL certificate --- scripts/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy.py b/scripts/deploy.py index 8c1bae8..3ecddcd 100644 --- a/scripts/deploy.py +++ b/scripts/deploy.py @@ -1188,7 +1188,7 @@ def deploy_initial() -> int: headers=client.headers, json={ "docker_compose_domains": [ - {"name": "crm-app", "domain": APP_DOMAIN} + {"name": "crm-app", "domain": f"{APP_DOMAIN}:443"} ] }, timeout=30,