diff options
author | makefu <github@syntax-fehler.de> | 2021-04-20 09:01:54 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-04-20 09:01:54 +0200 |
commit | 610a81d723a8a6593ccb1adf7f87eef145953771 (patch) | |
tree | 13739e02a1b73671bf6cbaad125ab4620eee63c1 /lass/2configs/searx.nix | |
parent | bba59bcf1115a14d913b5dff30fe6df0bc395233 (diff) | |
parent | 6b12f7ec6ab25eb482c73d9c3e1b892b0531ff6d (diff) |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'lass/2configs/searx.nix')
-rw-r--r-- | lass/2configs/searx.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lass/2configs/searx.nix b/lass/2configs/searx.nix new file mode 100644 index 000000000..ed6586a26 --- /dev/null +++ b/lass/2configs/searx.nix @@ -0,0 +1,23 @@ +{ pkgs, ... }: +let + port = 8889; +in { + services.nginx.virtualHosts.search = { + serverAliases = [ "search.r" ]; + locations."/".extraConfig = '' + proxy_set_header Host $host; + proxy_pass http://127.0.0.1:${builtins.toString port}; + ''; + }; + + services.searx = { + enable = true; + configFile = pkgs.writeText "searx.cfg" (builtins.toJSON { + use_default_settings = true; + server = { + port = port; + secret_key = builtins.readFile <secrets/searx.key>; + }; + }); + }; +} |