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

16 lines
338 B
Nix
Raw Normal View History

{ config, ... }:
let
cfg = config.const.host.nginx;
in
2024-12-02 21:12:45 +03:00
{
"change.${cfg.domain}" = {
inherit (cfg) sslCertificate sslCertificateKey extraConfig;
locations."/" = {
proxyPass = "http://127.0.0.1:5001$request_uri";
extraConfig = cfg.allowLocal + ''
add_header Referrer-Policy 'origin';
'';
};
};
2024-12-02 21:12:45 +03:00
}