diff --git a/hosts/pluto/services/searxng.nix b/hosts/pluto/services/searxng.nix index 764275c..2e2570e 100644 --- a/hosts/pluto/services/searxng.nix +++ b/hosts/pluto/services/searxng.nix @@ -7,6 +7,7 @@ # server.port = 8080; # server.bind_addres = "0.0.0.0"; server.secret_key = "6f6bf40218f239718cacbc2cd837792be828e840b48ac72a8e0a9d0ddb9d0b00"; + server.base_url = "https://search.zackmyers.io/searx/"; }; uwsgiConfig = { http = ":8080"; @@ -16,7 +17,7 @@ services.nginx.virtualHosts."search.zackmyers.io" = { forceSSL = true; enableACME = true; - locations."/" = { + locations."/searx/" = { proxyPass = "http://localhost:8080"; }; };