From c940a51eccb0e7cd74f7fd0a973a7770e05568c0 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 1 Jan 2025 02:33:23 +0100 Subject: [PATCH] nixos/coturn: restore logging functionality Due to undetermined hardening changes logging to syslog does not work anymore, but we don't need it. We're running in a systemd unit so allow logging to stdout instead. (cherry picked from commit 269d5969703af08909447eb39d442ac5aa08b4d8) --- nixos/modules/services/networking/coturn.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nixos/modules/services/networking/coturn.nix b/nixos/modules/services/networking/coturn.nix index b50aad89871b8..8a0d08f6d9cb0 100644 --- a/nixos/modules/services/networking/coturn.nix +++ b/nixos/modules/services/networking/coturn.nix @@ -36,8 +36,6 @@ let ${lib.optionalString (cfg.cert != null) "cert=${cfg.cert}"} ${lib.optionalString (cfg.pkey != null) "pkey=${cfg.pkey}"} ${lib.optionalString (cfg.dh-file != null) "dh-file=${cfg.dh-file}"} - no-stdout-log - syslog pidfile=${pidfile} ${lib.optionalString cfg.secure-stun "secure-stun"} ${lib.optionalString cfg.no-cli "no-cli"}