From f58877046301326e77cb2141c4e2a6a5df0f9a17 Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Wed, 8 Sep 2021 20:11:36 -0400 Subject: [PATCH] fix rtmp port --- common/server/nginx-stream.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/server/nginx-stream.nix b/common/server/nginx-stream.nix index 5df6c39..9f29aaf 100644 --- a/common/server/nginx-stream.nix +++ b/common/server/nginx-stream.nix @@ -51,9 +51,9 @@ in { appendConfig = '' rtmp { server { - listen ${cfg.port}; + listen ${toString cfg.port}; chunk_size 4096; - application ${toString cfg.rtmpName} { + application ${cfg.rtmpName} { allow publish all; allow publish all; live on;