From 4d8256835a3f039b22df2ccdf14cd422fba2bc56 Mon Sep 17 00:00:00 2001 From: Dennis Date: Mon, 26 Jan 2026 10:35:56 +0100 Subject: [PATCH] tries to fix it --- modules/cockpit/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/cockpit/default.nix b/modules/cockpit/default.nix index 6cd3f00..63fd926 100644 --- a/modules/cockpit/default.nix +++ b/modules/cockpit/default.nix @@ -2,10 +2,13 @@ services.cockpit = { enable = true; openFirewall = true; + allowed-origins = [ + "http://192.168.178.69:9090" + "wss://192.168.178.69:9090" + ]; settings = { WebService = { AllowUnencrypted = true; - Origins = "http://192.168.178.69:9090 wss://192.168.178.69:9090"; }; }; };