From aa558745f9808ba2c348b9abed4b56e8e782ccca Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 24 Feb 2021 11:55:44 +0000 Subject: [PATCH] services: jellyfin: proxy websockets --- services/jellyfin.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/jellyfin.nix b/services/jellyfin.nix index 8e7637f..d488424 100644 --- a/services/jellyfin.nix +++ b/services/jellyfin.nix @@ -21,7 +21,10 @@ in forceSSL = true; useACMEHost = "${domain}"; - locations."/".proxyPass = "http://localhost:8096/"; + locations."/" = { + proxyPass = "http://localhost:8096/"; + proxyWebsockets = true; + }; }; }; }