set up duel stack for haproxy

This commit is contained in:
2025-02-12 19:43:00 -05:00
parent e1bbadfcba
commit 433c52309b
3 changed files with 11 additions and 11 deletions

View File

@@ -21,8 +21,8 @@ defaults
#Application Setup
frontend ContentSwitching
bind *:80
bind *:443 ssl crt /zfs/storage/secrets/docker/cloudflare.pem
bind *:80 v4v6
bind *:443 v4v6 ssl crt /zfs/storage/secrets/docker/cloudflare.pem
mode http
# tmmworkshop.com
acl host_audiobookshelf hdr(host) -i audiobookshelf.tmmworkshop.com
@@ -43,31 +43,31 @@ frontend ContentSwitching
backend audiobookshelf_nodes
mode http
server server 192.168.90.40:8000
server server 127.0.0.1:8000
backend cache_nodes
mode http
server server 192.168.90.40:5000
server server 127.0.0.1:5000
backend filebrowser_nodes
mode http
server server 192.168.90.40:8080
server server 127.0.0.1:8080
backend homeassistant_nodes
mode http
server server 192.168.95.14:8123
server server 127.0.0.1:8123
backend jellyfin
option httpchk
option forwardfor
http-check send meth GET uri /health
http-check expect string Healthy
server jellyfin 192.168.95.14:8096
server jellyfin 127.0.0.1:8096
backend share_nodes
mode http
server server 192.168.95.14:8091
server server 127.0.0.1:8091
backend uptime_kuma_nodes
mode http
server server 192.168.95.14:3001
server server 127.0.0.1:3001