From 4e462006178d316f0e28a7478cdc52dd7daec2b8 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Wed, 10 Sep 2025 00:07:13 +0100 Subject: [PATCH] owncast: Enable websockets so stream chat works --- services/owncast.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/owncast.nix b/services/owncast.nix index 47173d0..1fbf52f 100644 --- a/services/owncast.nix +++ b/services/owncast.nix @@ -22,7 +22,10 @@ in ${cfg.domain} = { forceSSL = true; enableACME = true; - locations."/".proxyPass = "http://127.0.0.1:32769/"; + locations."/" = { + proxyPass = "http://127.0.0.1:32769/"; + proxyWebsockets = true; + }; }; }; };