grafana: fix websocket

This commit is contained in:
Sandro - 2023-12-03 16:34:01 +01:00
parent 839c97fced
commit 091f1266f7
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 7 additions and 1 deletions

View File

@ -106,7 +106,13 @@
default = true;
enableACME = true;
forceSSL = true;
locations = { "/".proxyPass = "http://localhost:3000/"; };
locations = {
"/".proxyPass = "http://localhost:3000/";
"/api/live/ws" = {
proxyPass = "http://localhost:3000/";
proxyWebsockets = true;
};
};
};
};
};