Setup searx
This commit is contained in:
parent
b250c1d13a
commit
435d5ea61b
|
@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue