From aac8ea00fbdd4baa55bba496d0c630d1221646d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Sat, 8 Aug 2026 01:06:04 +0200 Subject: [PATCH] System Gen28 @ 2026-08-08-01:06:03 by jonas@harbor --- modules/services/korrosync/korrosync-hive.nix | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/modules/services/korrosync/korrosync-hive.nix b/modules/services/korrosync/korrosync-hive.nix index 5bfef3a..21cb1f8 100644 --- a/modules/services/korrosync/korrosync-hive.nix +++ b/modules/services/korrosync/korrosync-hive.nix @@ -48,17 +48,17 @@ }; # Virtual host for korrosync - services.nginx.virtualHosts."${cfg.instanceFQDN}" = - { - forceSSL = true; - enableACME = true; - locations."/" = { - proxyPass = "http://127.0.0.1:${toString cfg.localPort}"; - }; - } - // (lib.optionalAttrs cfg.blockUserCreation { - locations."/users/create".return = 403; - }); + services.nginx.virtualHosts."${cfg.instanceFQDN}" = { + forceSSL = true; + enableACME = true; + locations = + { + "/".proxyPass = "http://127.0.0.1:${toString cfg.localPort}"; + } + // (lib.optionalAttrs cfg.blockUserCreation { + "/users/create".return = 403; + }); + }; }; }; }