infrastructure/machines/web01/ntfy-sh.nix

30 lines
562 B
Nix
Raw Normal View History

2023-10-22 22:31:06 +02:00
{ config, ... }:
let host = "push.dgnum.eu";
in {
services.ntfy-sh = {
enable = true;
settings = {
base-url = "https://${host}";
enable-login = true;
behind-proxy = true;
manager-interval = "1h";
};
};
services.nginx.virtualHosts.${host} = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:2586";
proxyWebsockets = true;
};
};
2023-10-22 22:31:06 +02:00
systemd.services.ntfy-sh.serviceConfig.EnvironmentFile =
[ config.age.secrets."ntfy_sh-environment_file".path ];
}