diff --git a/systems/jeeves/services/haproxy.cfg b/systems/jeeves/services/haproxy.cfg index 2adebec..2baf368 100644 --- a/systems/jeeves/services/haproxy.cfg +++ b/systems/jeeves/services/haproxy.cfg @@ -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 \ No newline at end of file