services: jellyfin: fix proxy configuration
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bruno BELANYI 2021-05-28 11:38:28 +02:00
parent 1ac9f0cc8c
commit 2999ba7c0b

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;
};