fix: ntfy version rollback

This commit is contained in:
Julien Malka 2023-04-09 00:13:41 +02:00
parent eb31a1fb99
commit 55de10dc3e
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -33,15 +33,19 @@
systemd.services.uptime-kuma.path = [ pkgs.unixtools.ping ]; systemd.services.uptime-kuma.path = [ pkgs.unixtools.ping ];
services.ntfy-sh.enable = true; services.ntfy-sh =
services.ntfy-sh.settings = { {
listen-http = ":8080"; enable = true;
behind-proxy = true; package = pkgs.unstable.ntfy-sh;
upstream-base-url = "https://ntfy.sh"; settings = {
base-url = "https://notifications.julienmalka.me"; listen-http = ":8080";
auth-file = "/srv/ntfy/user.db"; behind-proxy = true;
auth-default-access = "deny-all"; upstream-base-url = "https://ntfy.sh";
}; base-url = "https://notifications.julienmalka.me";
auth-file = "/srv/ntfy/user.db";
auth-default-access = "deny-all";
};
};
services.nginx.virtualHosts."status.julienmalka.me" = { services.nginx.virtualHosts."status.julienmalka.me" = {
forceSSL = true; forceSSL = true;