infrastructure/machines/web01/ntfy-sh.nix
2023-10-22 20:51:18 +02:00

26 lines
428 B
Nix

_:
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;
};
};
}