feat: add production host routes

This commit is contained in:
Alfredo Di Stasio
2026-07-02 12:06:10 +02:00
parent 1470b49ed9
commit 34b68ae6e7
9 changed files with 333 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
http:
routers:
bc-younerd-http:
entryPoints:
- web
rule: "Host(`bc.younerd.org`) || Host(`www.bc.younerd.org`)"
service: bc-younerd-http
services:
bc-younerd-http:
loadBalancer:
healthCheck:
path: "/"
hostname: "bc.younerd.org"
interval: "10s"
timeout: "3s"
servers:
- url: "http://127.0.0.1:12080"
tcp:
routers:
bc-younerd-tls:
entryPoints:
- tls
rule: "HostSNI(`bc.younerd.org`) || HostSNI(`www.bc.younerd.org`)"
service: bc-younerd-tls
tls:
passthrough: true
services:
bc-younerd-tls:
loadBalancer:
healthCheck:
interval: "10s"
timeout: "3s"
servers:
- address: "127.0.0.1:12443"