From db03b5c69bd0e7475b77cb21a6ec1a9af1956728 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douze=20B=C3=A9?= <12b@distrilab.fr> Date: Fri, 3 May 2024 14:00:37 +0200 Subject: [PATCH 1/3] Fix issue of coturn not starting on boot --- conf/synapse-coturn.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/synapse-coturn.service b/conf/synapse-coturn.service index 6b34a13..4c700a6 100644 --- a/conf/synapse-coturn.service +++ b/conf/synapse-coturn.service @@ -8,7 +8,7 @@ User=turnserver Group=turnserver Type=notify EnvironmentFile=/etc/matrix-__APP__/coturn_env -ExecStart=/usr/bin/turnserver -c /etc/matrix-__APP__/coturn.conf $EXTRA_OPTIONS --pidfile= +ExecStart=/usr/bin/turnserver -c /etc/matrix-__APP__/coturn.conf $EXTRA_OPTIONS -L 0.0.0.0 --pidfile= Restart=on-failure InaccessibleDirectories=/home PrivateTmp=yes From cc6e455e351c613fa69668c5207d737ec4265b4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douze=20B=C3=A9?= <12b@distrilab.fr> Date: Fri, 3 May 2024 14:39:59 +0200 Subject: [PATCH 2/3] Fix issue of synapse not starting on ipv4 only server --- conf/homeserver.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/homeserver.yaml b/conf/homeserver.yaml index a61ad43..82fd900 100644 --- a/conf/homeserver.yaml +++ b/conf/homeserver.yaml @@ -304,7 +304,7 @@ listeners: tls: false type: http x_forwarded: true - bind_addresses: ['::1', '127.0.0.1'] + bind_addresses: [localhost] resources: - names: [client, federation] From 1f1a184cff3ba289cc45e3097e51adc203e137a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douze=20B=C3=A9?= <12b@distrilab.fr> Date: Sat, 4 May 2024 11:08:24 +0200 Subject: [PATCH 3/3] Change bind address from localhost to 127.0.0.1 --- conf/homeserver.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/homeserver.yaml b/conf/homeserver.yaml index 82fd900..479e49c 100644 --- a/conf/homeserver.yaml +++ b/conf/homeserver.yaml @@ -304,7 +304,7 @@ listeners: tls: false type: http x_forwarded: true - bind_addresses: [localhost] + bind_addresses: [127.0.0.1] resources: - names: [client, federation]