From 85a109de65f82f467177b92c5c353b92124b62a8 Mon Sep 17 00:00:00 2001 From: Paul Walko Date: Sat, 13 Feb 2021 23:14:49 -0500 Subject: [PATCH] add federation port --- ansible/files/fogcutter/sshtunnel.service | 1 + ansible/files/polyvalent/haproxy.cfg | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/ansible/files/fogcutter/sshtunnel.service b/ansible/files/fogcutter/sshtunnel.service index ca23e3e..8c09990 100644 --- a/ansible/files/fogcutter/sshtunnel.service +++ b/ansible/files/fogcutter/sshtunnel.service @@ -15,6 +15,7 @@ ExecStart=/usr/bin/ssh -Nn \ -R 7001:127.0.0.1:8443 \ -R 7002:127.0.0.1:2222 \ -R 7003:127.0.0.1:25565 \ + -R 7004:127.0.0.1:8448 \ pew@polyvalent.seaturtle.pw Restart=always RestartSec=30 diff --git a/ansible/files/polyvalent/haproxy.cfg b/ansible/files/polyvalent/haproxy.cfg index ea94f95..acaed0f 100644 --- a/ansible/files/polyvalent/haproxy.cfg +++ b/ansible/files/polyvalent/haproxy.cfg @@ -34,3 +34,9 @@ listen proxy25565 mode tcp bind :::25565 server proxy7003 127.0.0.1:7003 + +# matrix federation +listen proxy8448 + mode tcp + bind :::8448 + server proxy7004 127.0.0.1:7004