From ffe0481e6fb4fbf22ff3e6fe17143c76bf921d06 Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sat, 19 Apr 2025 23:59:49 +0200 Subject: [PATCH] feat: http acme challenge --- hosts/hitsugibune/matrix.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/hitsugibune/matrix.nix b/hosts/hitsugibune/matrix.nix index 5ffdb72..80a9603 100644 --- a/hosts/hitsugibune/matrix.nix +++ b/hosts/hitsugibune/matrix.nix @@ -58,13 +58,14 @@ allowedUDPPortRanges = range; allowedUDPPorts = [3478 5349]; allowedTCPPortRanges = []; - allowedTCPPorts = [3478 5349]; + allowedTCPPorts = [ 80 3478 5349]; }; }; # get a certificate security.acme.defaults.email = "stefan@tague.at"; security.acme.acceptTerms = true; security.acme.certs.${config.services.coturn.realm} = { + listenHTTP = true; postRun = "systemctl restart coturn.service"; group = "turnserver"; };