14 lines
341 B
Nix
14 lines
341 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
config = lib.mkIf (config.services.searx.enable && config.host.reverse_proxy.enable) {
|
|
host = {
|
|
reverse_proxy.subdomains.searx = {
|
|
subdomain = config.services.searx.subdomain;
|
|
target = "http://localhost:${toString config.services.searx.settings.server.port}";
|
|
};
|
|
};
|
|
};
|
|
}
|