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