nix/host/x86_64-linux/home/nginx/Valutwarden.nix

14 lines
273 B
Nix
Raw Normal View History

{ config, ... }:
let
cfg = config.const.host.nginx;
in
2024-12-02 21:12:45 +03:00
{
"pass.${cfg.domain}" = {
inherit (cfg) sslCertificate sslCertificateKey extraConfig;
locations."/" = {
proxyPass = "http://[::1]:8001$request_uri";
extraConfig = cfg.allowLocal;
};
};
2024-12-02 21:12:45 +03:00
}