feat: Add searXNG service with Prometheus monitoring integration

This commit is contained in:
pazpi 2024-11-29 16:15:22 +01:00
parent 61f207ae81
commit 15ce2146e3
6 changed files with 85 additions and 0 deletions

View file

@ -62,6 +62,14 @@ in
job_name = "caddy";
static_configs = [ { targets = [ "caddy.internal:2024" ]; } ];
}
{
job_name = "searxng";
static_configs = [ { targets = [ "searxng.internal:8080" ]; } ];
basic_auth = {
username = "searxng";
password_file = config.age.secrets.searx-prometheus-secret.path;
};
}
];
};

View file

@ -2,6 +2,7 @@
imports = [
./media-mgr.nix
./nextcloud.nix
./searx.nix
./vaultwarden.nix
];
}

View file

@ -0,0 +1,71 @@
{
lib,
config,
pkgs,
...
}:
let
cfg = config.my.services.searx;
in
{
options.my.services.searx = {
enable = lib.mkEnableOption "Enable searXNG module";
proxy = {
enable = lib.mkEnableOption "Set the proxy entry for this service";
domain = lib.mkOption {
default = "example.com";
type = lib.types.str;
description = ''
The domain where Caddy is reachable
'';
};
host = lib.mkOption {
default = "localhost";
type = lib.types.str;
description = ''
host name where the service is running
'';
};
};
};
config = lib.mkMerge [
(lib.mkIf cfg.enable {
age.secrets.searx-secret.file = ../../secrets/searx-secret.age;
services.searcx = {
enable = true;
redisCreateLocally = true;
environmentFile = config.age.secrets.searx-secret.path;
settings = {
general = {
open_metrics = "@METRICS_SECRET@";
};
server = {
base_url = "https://search.${cfg.proxy.domain}";
bind_address = "::1";
port = 8080;
secret_key = "@SEARX_SECRET_KEY@";
};
};
};
})
(lib.mkIf cfg.proxy.enable {
services.caddy = with cfg.proxy; {
virtualHosts."search.${domain}".extraConfig = ''
reverse_proxy http://${host}:8080
import cloudflare
'';
};
})
];
}