nixcfg/systems/x86_64-linux/sgx/openwebui.nix
Harald Hoyer 27d5373e2d fix(config): update OLLAMA_API_BASE_URL for local network
Updated the base URL to align with the current local network setup. This ensures proper connectivity and functionality within the specified environment.
2025-02-04 10:11:25 +01:00

17 lines
347 B
Nix

{ ... }:
{
services.open-webui = {
enable = true;
port = 8080;
host = "0.0.0.0";
environment = {
ANONYMIZED_TELEMETRY = "False";
DO_NOT_TRACK = "True";
SCARF_NO_ANALYTICS = "True";
OLLAMA_API_BASE_URL = "http://m4.fritz.box:11434";
# Disable authentication
WEBUI_AUTH = "False";
};
};
}