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 59s
Remote Deployment Pipeline / Cleanup Preview (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
33 lines
944 B
YAML
33 lines
944 B
YAML
http:
|
|
routers:
|
|
# Router for HTTP (Port 80)
|
|
staging:
|
|
rule: "HostRegexp(`^.+\\.staging\\.kovagoadi\\.hu$`) || HostRegexp(`^.+\\.dev\\.kovagoadi\\.hu$`)"
|
|
entryPoints:
|
|
- "web"
|
|
service: "dev-staging"
|
|
priority: 1000
|
|
services:
|
|
dev-staging:
|
|
loadBalancer:
|
|
servers:
|
|
- url: "http://192.168.1.85:8080"
|
|
|
|
tcp:
|
|
routers:
|
|
# Router for HTTPS (Passthrough)
|
|
dev-staging-secure:
|
|
rule: "HostSNIRegexp(`^.+\\.staging\\.kovagoadi\\.hu$`) || HostSNIRegexp(`^.+\\.dev\\.kovagoadi\\.hu$`)"
|
|
service: "dev-staging-secure"
|
|
# Passthrough must be true for SSL to reach Nginx encrypted
|
|
tls:
|
|
passthrough: true
|
|
priority: 1000
|
|
entryPoints:
|
|
- "https"
|
|
services:
|
|
dev-staging-secure:
|
|
loadBalancer:
|
|
servers:
|
|
# Note: Ensure Traefik trusts the cert at .85 or set insecureSkipVerify
|
|
- address: "192.168.1.85:445" |