fix: jellyfin revproxy

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-10-31 21:18:54 +01:00
parent 01986cebd9
commit 95cbbfb157
Signed by: lander
GPG key ID: 0142722B4B0C536F

View file

@ -177,9 +177,14 @@
services.nginx.virtualHosts."media.escapeangle.com" = { services.nginx.virtualHosts."media.escapeangle.com" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
locations."/" = { locations = {
proxyPass = "http://localhost:8096"; "/" = {
proxyWebsockets = true; proxyPass = "http://localhost:8096";
};
"/socket" = {
proxyPass = "http://localhost:8096";
proxyWebsockets = true;
};
}; };
}; };