From ae99439be4c2520f263e3e05b0fd056439c9c5e9 Mon Sep 17 00:00:00 2001 From: kovagoadi Date: Wed, 24 Dec 2025 21:42:18 +0100 Subject: [PATCH] Change back and insecureSkipVerify --- dev/route-to-staging-dev.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev/route-to-staging-dev.yaml b/dev/route-to-staging-dev.yaml index b916e90..ad0a81d 100644 --- a/dev/route-to-staging-dev.yaml +++ b/dev/route-to-staging-dev.yaml @@ -2,7 +2,7 @@ http: routers: # Router for HTTP (Port 80) staging: - rule: "HostSNI(`staging.kovagoadi.hu`) || HostSNI(`test-whoami.staging.kovagoadi.hu`)" + rule: "Host(`staging.kovagoadi.hu`) || Host(`test-whoami.staging.kovagoadi.hu`)" entryPoints: - "web" service: "dev-staging" @@ -10,7 +10,7 @@ http: # Router for HTTPS (Port 443) staging-secure: - rule: "HostSNI(`staging.kovagoadi.hu`) || HostSNI(`dev.kovagoadi.hu`)" + rule: "Host(`staging.kovagoadi.hu`) || Host(`dev.kovagoadi.hu`)" entryPoints: - "https" service: "dev-staging-secure" @@ -27,4 +27,6 @@ http: loadBalancer: servers: # Note: Ensure Traefik trusts the cert at .85 or set insecureSkipVerify - - url: "https://192.168.1.85:445" \ No newline at end of file + - url: "https://192.168.1.85:445" + tls: + insecureSkipVerify: true