This commit is contained in:
2025-07-31 14:05:12 +03:00
parent 8cd1c4d276
commit 7f6e643cc7
6 changed files with 40 additions and 49 deletions
+14 -9
View File
@@ -6,15 +6,20 @@
...
}:
{
services.open-webui = {
enable = true;
environment = {
ANONYMIZED_TELEMETRY = "False";
DO_NOT_TRACK = "True";
SCARF_NO_ANALYTICS = "True";
OLLAMA_API_BASE_URL = "http://127.0.0.1:1234";
# Disable authentication
WEBUI_AUTH = "False";
services = {
open-webui = {
enable = true;
host = "0.0.0.0";
port = 11111;
openFirewall = true;
environment = {
ANONYMIZED_TELEMETRY = "False";
DO_NOT_TRACK = "True";
SCARF_NO_ANALYTICS = "True";
OPENAI_API_BASE_URL = "http://127.0.0.1:1234";
#OLLAMA_API_BASE_URL = "http://127.0.0.1:1234";
#WEBUI_AUTH = "False"; # Disable authentication
};
};
};
}