From 49a261e5ee97e8a91546600e57756eeef93b2472 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 22 Feb 2021 11:58:54 +0100 Subject: [PATCH] jellyfin: proxy websockets traffic --- services/jellyfin.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/jellyfin.nix b/services/jellyfin.nix index 491ecfb..09382ee 100644 --- a/services/jellyfin.nix +++ b/services/jellyfin.nix @@ -26,7 +26,10 @@ in { forceSSL = true; enableACME = true; - locations."/".proxyPass = "http://localhost:${toString jellyfinPort}/"; + locations."/" = { + proxyPass = "http://localhost:${toString jellyfinPort}/"; + proxyWebsockets = true; + }; }; }; }