From 67581adde6497427538f8ca95bbc60fe3f8ae3c6 Mon Sep 17 00:00:00 2001 From: Julian Sutter Date: Mon, 16 Feb 2026 22:25:41 -0800 Subject: [PATCH] Fix nginx upstream to use IPv4 for immich --- servers/immich.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/immich.nix b/servers/immich.nix index 5639aed..cf99759 100644 --- a/servers/immich.nix +++ b/servers/immich.nix @@ -59,7 +59,7 @@ in ''; locations."/" = { - proxyPass = "http://localhost:${toString immichPort}"; + proxyPass = "http://127.0.0.1:${toString immichPort}"; proxyWebsockets = true; recommendedProxySettings = true;