From e27a68275b43df2a768b2bbb7d9b6294a59fb049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Fri, 12 Dec 2025 14:21:15 +0100 Subject: [PATCH] Fixed URLs (#9902) --- install/pangolin-install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/install/pangolin-install.sh b/install/pangolin-install.sh index db60cd39e..92c0380e9 100644 --- a/install/pangolin-install.sh +++ b/install/pangolin-install.sh @@ -62,7 +62,7 @@ server: secret: "$SECRET_KEY" gerbil: - base_endpoint: "$pango_url" + base_endpoint: "${pango_url#https://}" flags: require_email_verification: false @@ -130,7 +130,7 @@ http: routers: # HTTP to HTTPS redirect router main-app-router-redirect: - rule: "Host(\`$pango_url\`)" + rule: "Host(\`${pango_url#https://}\`)" service: next-service entryPoints: - web @@ -139,7 +139,7 @@ http: # Next.js router (handles everything except API and WebSocket paths) next-router: - rule: "Host(\`$pango_url\`) && !PathPrefix(\`/api/v1\`)" + rule: "Host(\`${pango_url#https://}\`) && !PathPrefix(\`/api/v1\`)" service: next-service entryPoints: - websecure @@ -148,7 +148,7 @@ http: # API router (handles /api/v1 paths) api-router: - rule: "Host(\`$pango_url\`) && PathPrefix(\`/api/v1\`)" + rule: "Host(\`${pango_url#https://}\`) && PathPrefix(\`/api/v1\`)" service: api-service entryPoints: - websecure @@ -157,7 +157,7 @@ http: # WebSocket router ws-router: - rule: "Host(\`$pango_url\`)" + rule: "Host(\`${pango_url#https://}\`)" service: api-service entryPoints: - websecure