From 35bb52cea393935baa96183926ea579627e27f71 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 4 Feb 2025 09:26:45 +0100 Subject: [PATCH] fix: update OLLAMA_API_BASE_URL to local domain Changed the API base URL from "m4.fritz.box" to "m4.local" for consistency and compatibility within the local network. This ensures better alignment with standard local domain naming practices. --- 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 009acc6..0c91512 100644 --- a/systems/x86_64-linux/sgx/openwebui.nix +++ b/systems/x86_64-linux/sgx/openwebui.nix @@ -8,7 +8,7 @@ ANONYMIZED_TELEMETRY = "False"; DO_NOT_TRACK = "True"; SCARF_NO_ANALYTICS = "True"; - OLLAMA_API_BASE_URL = "http://m4.fritz.box:11434"; + OLLAMA_API_BASE_URL = "http://m4.local:11434"; # Disable authentication WEBUI_AUTH = "False"; };