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