feat(sgx): enable authentication for OpenWebUI

- Set `WEBUI_AUTH` to "True" in the OpenWebUI configuration.
- This change enforces authentication for enhanced security.
This commit is contained in:
Harald Hoyer 2025-04-30 11:05:17 +02:00
parent 0471cecafd
commit 8202aad70f

View file

@ -11,8 +11,8 @@
ENABLE_OLLAMA_API = "True"; ENABLE_OLLAMA_API = "True";
OLLAMA_API_BASE_URL = "http://m4.local:11434"; OLLAMA_API_BASE_URL = "http://m4.local:11434";
ENABLE_OPENAI_API = "False"; ENABLE_OPENAI_API = "False";
# Disable authentication # Enable authentication
WEBUI_AUTH = "False"; WEBUI_AUTH = "True";
}; };
}; };
} }