Correct env var retrival for searxng

This commit is contained in:
pazpi 2026-01-15 14:56:06 +01:00
parent 891527e228
commit addd0c5df4

View file

@ -59,14 +59,14 @@ in
environmentFile = cfg.secretFile; environmentFile = cfg.secretFile;
settings = { settings = {
general = { general = {
open_metrics = "@METRICS_SECRET@"; open_metrics = "$METRICS_SECRET";
}; };
server = { server = {
base_url = with cfg.proxy; "https://${subdomain}.${domain}"; base_url = with cfg.proxy; "https://${subdomain}.${domain}";
bind_address = "0.0.0.0"; bind_address = "0.0.0.0";
port = 8080; port = 8080;
secret_key = "@SEARX_SECRET_KEY@"; secret_key = "$SEARX_SECRET_KEY";
}; };
search = { search = {