diff options
Diffstat (limited to 'terminaldweller.com/haproxy')
-rw-r--r-- | terminaldweller.com/haproxy/haproxy.cfg | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/terminaldweller.com/haproxy/haproxy.cfg b/terminaldweller.com/haproxy/haproxy.cfg index 6408b44..2b433d4 100644 --- a/terminaldweller.com/haproxy/haproxy.cfg +++ b/terminaldweller.com/haproxy/haproxy.cfg @@ -125,6 +125,7 @@ frontend https acl main-host-s req.ssl_sni -i terminaldweller.com acl doh2-host-s req.ssl_sni -i doh2.terminaldweller.com acl pastebin-host-s req.ssl_sni -i pastebin.terminaldweller.com + acl icanhazallips-host-s req.ssl_sni -i icanhazallips.terminaldweller.com #Conditions use_backend mail-backend-s if mail-host-s #use_backend chat-backend-s if chat-host-s @@ -143,6 +144,7 @@ frontend https use_backend main-backend-s if main-host-s use_backend doh2-backend-s if doh2-host-s use_backend pastebin-backend-s if pastebin-host-s + use_backend icanhazallips-backend-s if icanhazallips-host-s #frontend jabber5222 # bind *:5222 @@ -211,7 +213,7 @@ frontend mail-imaps frontend mail-pop3 bind *:110 mode http - acl mail-host hdr_sub(host) -i mail.terminalweller.com + acl mail-host hdr_sub(host) -i mail.terminaldweller.com use_backend mail-backend-pop3 if mail-host frontend mail-pop3s bind *:995 @@ -434,3 +436,8 @@ backend pastebin-backend-s mode tcp option tcp-check server main-host-s 185.130.47.208:3010 + +backend icanhazallips-backend-s + mode tcp + option tcp-check + server main-host-s 185.130.47.208:9380 |