diff --git a/modules/ollama.nix b/modules/ollama.nix index c014d6e..b46b459 100644 --- a/modules/ollama.nix +++ b/modules/ollama.nix @@ -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; + }; }; }; }