added gitea to haproxy

This commit is contained in:
2025-12-20 14:43:07 -05:00
parent ca4693a1ba
commit cc2a609f52

View File

@@ -33,6 +33,7 @@ frontend ContentSwitching
acl host_share hdr(host) -i share.tmmworkshop.com
acl host_gcw hdr(host) -i gcw.tmmworkshop.com
acl host_n8n hdr(host) -i n8n.tmmworkshop.com
acl host_gitea hdr(host) -i gitea.tmmworkshop.com
use_backend audiobookshelf_nodes if host_audiobookshelf
use_backend cache_nodes if host_cache
@@ -42,6 +43,7 @@ frontend ContentSwitching
use_backend share_nodes if host_share
use_backend gcw_nodes if host_gcw
use_backend n8n if host_n8n
use_backend gitea if host_gitea
backend audiobookshelf_nodes
mode http
@@ -77,3 +79,7 @@ backend gcw_nodes
backend n8n
mode http
server server 127.0.0.1:5678
backend gitea
mode http
server server 127.0.0.1:6443