making open-webui proxyWebsockets

This commit is contained in:
Chris Cochrun 2025-05-15 22:58:29 -05:00
parent 36c1a6ae35
commit 01924df4fa

View file

@ -31,7 +31,10 @@ in with lib;
nginx.virtualHosts.${dn} = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:${toString config.services.open-webui.port}";
locations."/" = {
proxyPass = "http://localhost:${toString config.services.open-webui.port}";
proxyWebsockets = true;
};
};
};
}