services: jellyfin: fix proxy configuration

This commit is contained in:
Bruno BELANYI 2021-05-28 11:38:28 +02:00
parent 90a89c56c8
commit 1f861e4d50

View file

@ -22,6 +22,13 @@ in
useACMEHost = domain;
locations."/" = {
proxyPass = "http://127.0.0.1:8096/";
extraConfig = ''
proxy_buffering off;
'';
};
locations."/socket" = {
proxyPass = "http://127.0.0.1:8096/";
proxyWebsockets = true;
};