From 2e175cce9f9a0bd7f25a32cf08c52ce0f2604622 Mon Sep 17 00:00:00 2001 From: Rustam Efimov Date: Sun, 12 Apr 2026 18:46:10 +0300 Subject: [PATCH] fix(modules/searxng): fix bad gateway in nginx --- services/searxng/network.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/searxng/network.nix b/services/searxng/network.nix index 6f694bc..c2d81a2 100644 --- a/services/searxng/network.nix +++ b/services/searxng/network.nix @@ -18,7 +18,7 @@ mkIf cfg.enable { forceSSL = true; enableACME = true; locations."/" = { - proxyPass = "http://[::1]:${toString cfg.port}"; + proxyPass = "http://127.0.0.1:${toString cfg.port}"; proxyWebsockets = true; }; };