All checks were successful
Remote Deployment Pipeline / Prepare Context (pull_request) Successful in 3s
Remote Deployment Pipeline / Deploy (Staging) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Dev/Preview) (pull_request) Successful in 48s
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (pull_request) Has been skipped
39 lines
948 B
YAML
39 lines
948 B
YAML
# ./traefik/forward-to-legacy-nginx.yaml
|
|
|
|
tcp:
|
|
routers:
|
|
# Router for HTTPS (Passthrough)
|
|
nginx-legacy-router-secure:
|
|
rule: "HostSNI(`*`)"
|
|
service: nginx-legacy-service-secure
|
|
# Passthrough must be true for SSL to reach Nginx encrypted
|
|
tls:
|
|
passthrough: true
|
|
priority: 1
|
|
entryPoints:
|
|
- "https"
|
|
|
|
services:
|
|
# Service defining the external IP
|
|
nginx-legacy-service-secure:
|
|
loadBalancer:
|
|
servers:
|
|
# This is the actual external IP and Port of your Nginx
|
|
- address: "webserver:443"
|
|
|
|
http:
|
|
routers:
|
|
# Router for HTTP
|
|
nginx-legacy-router:
|
|
rule: "HostRegexp(`^.+$`)"
|
|
service: nginx-legacy-service
|
|
# Low priority ensures specific containers are handled first
|
|
priority: 1
|
|
entryPoints:
|
|
- "web"
|
|
|
|
services:
|
|
nginx-legacy-service:
|
|
loadBalancer:
|
|
servers:
|
|
- url: "http://webserver:80" |