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:
static-younerd-http:
entryPoints:
- web
rule: "Host(`static.younerd.org`)"
service: static-younerd-http
services:
static-younerd-http:
loadBalancer:
healthCheck:
path: "/"
hostname: "static.younerd.org"
interval: "10s"
timeout: "3s"
servers:
- url: "http://127.0.0.1:17080"
tcp:
routers:
static-younerd-tls:
entryPoints:
- tls
rule: "HostSNI(`static.younerd.org`)"
service: static-younerd-tls
tls:
passthrough: true
services:
static-younerd-tls:
loadBalancer:
healthCheck:
interval: "10s"
timeout: "3s"
servers:
- address: "127.0.0.1:17443"