HAProxy/04listen.cfg

43 lines
922 B
INI
Raw Permalink Normal View History

2024-10-08 19:25:39 +09:00
# Listens (frontend and backend combined)
2024-11-27 21:28:44 +09:00
# Forgejo
listen ssh
bind :22
bind :::22 v6only
mode tcp
option tcplog
server git-ssh forgejo.incus:10022 send-proxy check
# Mailcow
2025-02-15 10:30:44 +09:00
listen smtp
bind :25
bind :::25 v6only
mode tcp
option tcplog
2025-02-15 14:53:51 +09:00
server mailcow 10.10.10.214:10025 send-proxy check
2025-02-15 10:30:44 +09:00
listen smtps
bind :465
bind :::465 v6only
mode tcp
option tcplog
2025-02-15 14:53:51 +09:00
server mailcow 10.10.10.214:10465 send-proxy check
2025-02-15 10:30:44 +09:00
listen imaps
bind :993
bind :::993 v6only
mode tcp
option tcplog
2025-02-15 14:53:51 +09:00
server mailcow 10.10.10.214:10993 send-proxy check
2025-02-15 10:30:44 +09:00
listen sieve
bind :4190
bind :::4190 v6only
mode tcp
option tcplog
2025-02-15 14:53:51 +09:00
server mailcow 10.10.10.214:14190 send-proxy check
2025-02-15 13:41:38 +09:00
2025-02-16 10:22:17 +09:00
## Adguard
#listen adguard-dot
# bind :853
# bind :::853 v6only
# mode tcp
# option tcplog
# server adguard adguard.incus:10853 send-proxy check