diff --git a/dev/route-to-staging-dev.yaml b/dev/route-to-staging-dev.yaml index 51fef4f..b916e90 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: "Host(`staging.kovagoadi.hu`) || Host(`test-whoami.staging.kovagoadi.hu`)" + rule: "HostSNI(`staging.kovagoadi.hu`) || HostSNI(`test-whoami.staging.kovagoadi.hu`)" entryPoints: - "web" service: "dev-staging" @@ -10,7 +10,7 @@ http: # Router for HTTPS (Port 443) staging-secure: - rule: "Host(`staging.kovagoadi.hu`) || Host(`dev.kovagoadi.hu`)" + rule: "HostSNI(`staging.kovagoadi.hu`) || HostSNI(`dev.kovagoadi.hu`)" entryPoints: - "https" service: "dev-staging-secure"