2024-08-31 02:15:09 +00:00
|
|
|
{ lib, ... }:
|
2024-08-11 10:13:36 +00:00
|
|
|
{
|
|
|
|
services.ntfy-sh = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
base-url = "https://ntfy.ny4.dev";
|
|
|
|
listen-http = "";
|
|
|
|
listen-unix = "/run/ntfy-sh/ntfy.sock";
|
|
|
|
listen-unix-mode = 511; # 0777
|
|
|
|
behind-proxy = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-08-25 15:02:35 +00:00
|
|
|
systemd.services.ntfy-sh.serviceConfig.RuntimeDirectory = [ "ntfy-sh" ];
|
2024-08-31 02:15:09 +00:00
|
|
|
|
|
|
|
services.caddy.settings.apps.http.servers.srv0.routes = lib.singleton {
|
|
|
|
match = lib.singleton {
|
|
|
|
host = [ "ntfy.ny4.dev" ];
|
|
|
|
};
|
|
|
|
handle = lib.singleton {
|
|
|
|
handler = "reverse_proxy";
|
|
|
|
upstreams = [ { dial = "unix//run/ntfy-sh/ntfy.sock"; } ];
|
|
|
|
};
|
|
|
|
};
|
2024-08-11 10:13:36 +00:00
|
|
|
}
|