From d188778574040b3b139bb4116de7e4a0538d5372 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 6 Dec 2024 09:10:25 +0100 Subject: [PATCH] feat(sgx): enable firewall opening for OpenWebUI Added the `openFirewall` option set to true in the SGX OpenWebUI configuration. This change ensures that firewall rules are adjusted to allow access to the configured port. This enhances accessibility and simplifies setup for users. --- systems/x86_64-linux/sgx/openwebui.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/systems/x86_64-linux/sgx/openwebui.nix b/systems/x86_64-linux/sgx/openwebui.nix index 59cbf11..0f72ecc 100644 --- a/systems/x86_64-linux/sgx/openwebui.nix +++ b/systems/x86_64-linux/sgx/openwebui.nix @@ -4,6 +4,7 @@ enable = true; port = 8080; host = "0.0.0.0"; + openFirewall= true; environment = { ANONYMIZED_TELEMETRY = "False"; DO_NOT_TRACK = "True";