From 95cbbfb157e66d11e02ce6ba49415c12013efc57 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Fri, 31 Oct 2025 21:18:54 +0100 Subject: [PATCH] fix: jellyfin revproxy Signed-off-by: Lander Van den Bulcke --- hosts/servers/hosting-02.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/hosts/servers/hosting-02.nix b/hosts/servers/hosting-02.nix index 3aaea4c..118f869 100644 --- a/hosts/servers/hosting-02.nix +++ b/hosts/servers/hosting-02.nix @@ -177,9 +177,14 @@ services.nginx.virtualHosts."media.escapeangle.com" = { forceSSL = true; enableACME = true; - locations."/" = { - proxyPass = "http://localhost:8096"; - proxyWebsockets = true; + locations = { + "/" = { + proxyPass = "http://localhost:8096"; + }; + "/socket" = { + proxyPass = "http://localhost:8096"; + proxyWebsockets = true; + }; }; };