From 41d7733576b966f98792a855ee5898e8a8587bbe Mon Sep 17 00:00:00 2001 From: "Ricardo (XenGi) Band" Date: Thu, 4 Dec 2025 15:09:05 +0100 Subject: [PATCH] fix ipv6 --- services/nginx.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/nginx.nix b/services/nginx.nix index 314e487..8d79b53 100644 --- a/services/nginx.nix +++ b/services/nginx.nix @@ -30,7 +30,7 @@ in ssl = true; } { - addr = "::"; + addr = "[::]"; port = 443; ssl = true; } @@ -40,7 +40,7 @@ in ssl = true; } { - addr = "::"; + addr = "[::]"; port = 8448; ssl = true; }