fix(modules/searxng): fix bad gateway in nginx
Some checks failed
Nix CI / build (push) Failing after 3m13s

This commit is contained in:
Rustam Efimov 2026-04-12 18:46:10 +03:00
parent 4ad607bd49
commit 2e175cce9f
No known key found for this signature in database

View file

@ -18,7 +18,7 @@ mkIf cfg.enable {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
locations."/" = { locations."/" = {
proxyPass = "http://[::1]:${toString cfg.port}"; proxyPass = "http://127.0.0.1:${toString cfg.port}";
proxyWebsockets = true; proxyWebsockets = true;
}; };
}; };