From d115cb94f01dd40a4058f921d65fb102788673ac Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 26 Jan 2026 13:18:46 +0700 Subject: [PATCH] Configure HTTPS for bi.brachnha.com - Set correct domain in Traefik labels - Configure HTTP to HTTPS redirect - Enable Let's Encrypt SSL certificate - Add secure entrypoint configuration Co-Authored-By: Claude --- docker-compose.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 724c72f..fc310b6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,9 +14,15 @@ services: - dokploy-network labels: - "traefik.enable=true" - - "traefik.http.routers.brachnha-insights.rule=Host(`your-domain.com`)" + - "traefik.http.routers.brachnha-insights.rule=Host(`bi.brachnha.com`)" + - "traefik.http.routers.brachnha-insights.entrypoints=websecure" - "traefik.http.routers.brachnha-insights.tls=true" - "traefik.http.routers.brachnha-insights.tls.certresolver=letsencrypt" + - "traefik.http.routers.brachnha-insights-http.rule=Host(`bi.brachnha.com`)" + - "traefik.http.routers.brachnha-insights-http.entrypoints=web" + - "traefik.http.routers.brachnha-insights-http.middlewares=redirect-to-https" + - "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https" + - "traefik.http.middlewares.redirect-to-https.redirectscheme.permanent=true" - "traefik.http.services.brachnha-insights.loadbalancer.server.port=3000" networks: