# ./traefik/forward-to-legacy-nginx.yml tcp: routers: # Router for HTTPS (Passthrough) nginx-legacy-router: rule: "HostSNI(`*`)" service: nginx-legacy-service # Passthrough must be true for SSL to reach Nginx encrypted tls: passthrough: true entryPoints: - "https" services: # Service defining the external IP nginx-legacy-service: loadBalancer: servers: # This is the actual external IP and Port of your Nginx - address: "webserver:443"