From c7346412369298fb84dd9cc7951bc351617dbb7b Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 18 Nov 2023 19:42:37 +0100 Subject: fix(system/services/etebase): Hard-code localhost ip Otherwise, etebase might use the ipv6 ip, whilst nginx uses the ipv4 version. This prevents this issue --- system/services/etebase/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/services/etebase/default.nix b/system/services/etebase/default.nix index 58d8b4b..4cf2cc0 100644 --- a/system/services/etebase/default.nix +++ b/system/services/etebase/default.nix @@ -4,7 +4,7 @@ port = 8001; settings = { global.secret_file = "${config.age.secrets.etebase-server.path}"; - allowed_hosts.allowed_host1 = "localhost"; + allowed_hosts.allowed_host1 = "127.0.0.1"; }; }; -- cgit 1.4.1