perfect...

This commit is contained in:
rotterdam 2023-06-02 19:02:51 -03:00
parent 66b3850633
commit ea02dd26b4
4 changed files with 11 additions and 23 deletions

View file

@ -0,0 +1,10 @@
{ inputs, config, pkgs, lib, ... }:
{
services.nginx.virtualHosts."search.baduhai.me" = {
useACMEHost = "baduhai.me";
forceSSL = true;
kTLS = true;
locations."/".proxyPass = "http://127.0.0.1:${config.ports.searx}";
};
}