From 8202aad70f76b405c19e2f1f28c8a61652af4fe9 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 30 Apr 2025 11:05:17 +0200 Subject: [PATCH] feat(sgx): enable authentication for OpenWebUI - Set `WEBUI_AUTH` to "True" in the OpenWebUI configuration. - This change enforces authentication for enhanced security. --- systems/x86_64-linux/sgx/openwebui.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/x86_64-linux/sgx/openwebui.nix b/systems/x86_64-linux/sgx/openwebui.nix index 3605a1f..995f66c 100644 --- a/systems/x86_64-linux/sgx/openwebui.nix +++ b/systems/x86_64-linux/sgx/openwebui.nix @@ -11,8 +11,8 @@ ENABLE_OLLAMA_API = "True"; OLLAMA_API_BASE_URL = "http://m4.local:11434"; ENABLE_OPENAI_API = "False"; - # Disable authentication - WEBUI_AUTH = "False"; + # Enable authentication + WEBUI_AUTH = "True"; }; }; }