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

14 lines
275 B
Nix
Raw Normal View History

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