Setup searx

This commit is contained in:
Nathan McCarty 2022-09-10 23:54:57 -04:00
parent b250c1d13a
commit 435d5ea61b
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 13 additions and 0 deletions

View File

@ -234,4 +234,17 @@
}; };
}; };
# Setup searx-ng docker
virtualisation.oci-containers.containers."searx-ng" = {
image = "searxng/searxng";
autoStart = true;
ports = [ "8091:8080" ];
};
services.nginx.virtualHosts."searx-ng.mccarty.io" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:8091";
};
};
} }