From 0092ccacbeeb20f3fce84b2dcf5e92fc9b8977e6 Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 17 Oct 2023 01:16:36 +0000 Subject: [PATCH] ejabberd: ensure coturn isnt running --- hosts/by-name/servo/services/ejabberd.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/by-name/servo/services/ejabberd.nix b/hosts/by-name/servo/services/ejabberd.nix index 2ef36de1..57fefae4 100644 --- a/hosts/by-name/servo/services/ejabberd.nix +++ b/hosts/by-name/servo/services/ejabberd.nix @@ -117,6 +117,9 @@ lib.mkIf false turnPortRange )); + # this ejabberd config uses builtin STUN/TURN server, so hack to ensure no other implementation fights for ports + services.coturn.enable = false; + # provide access to certs # TODO: this should just be `acme`. then we also add nginx to the `acme` group. # why is /var/lib/acme/* owned by `nginx` group??