diff --git a/services/searxng.nix b/services/searxng.nix index 651343b..8f94c52 100644 --- a/services/searxng.nix +++ b/services/searxng.nix @@ -4,12 +4,17 @@ services.searx = { enable = true; redisCreateLocally = true; - settings.server = { - bind_address = "::1"; - port = 8080; - # WARNING: setting secret_key here might expose it to the nix cache - # see below for the sops or environment file instructions to prevent this - secret_key = "asdfkljlksjd38107e17u00d28481#*@)$)*"; + settings { + server = { + base_url = "https://search.example.com"; + port = 8888; + bind_address = "127.0.0.1"; + secret_key = "asdfkljlksjd38107e17u00d28481#*@)$)*"; + limiter = true; + public_instance = true; + image_proxy = true; + method = "GET"; + }; }; };