From c65f89edf8eaaea2af4de01f19f4e7d104c89c07 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 6 Dec 2024 09:12:27 +0100 Subject: [PATCH] fix(openwebui): update OLLAMA_API_BASE_URL configuration Update the OLLAMA_API_BASE_URL to ensure proper resolution with the full domain name `m4.fritz.box`. This change ensures that the API endpoint is correctly accessible within the network. --- systems/x86_64-linux/sgx/openwebui.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/sgx/openwebui.nix b/systems/x86_64-linux/sgx/openwebui.nix index 0f72ecc..3bd2995 100644 --- a/systems/x86_64-linux/sgx/openwebui.nix +++ b/systems/x86_64-linux/sgx/openwebui.nix @@ -9,7 +9,7 @@ ANONYMIZED_TELEMETRY = "False"; DO_NOT_TRACK = "True"; SCARF_NO_ANALYTICS = "True"; - OLLAMA_API_BASE_URL = "http://m4:11434"; + OLLAMA_API_BASE_URL = "http://m4.fritz.box:11434"; # Disable authentication WEBUI_AUTH = "False"; };