summaryrefslogtreecommitdiff
path: root/flora/services/ntfy.nix
blob: cda212d6811d5611c8493dc5ceac356f3325ac39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ config, ... }:

{
  services.ntfy-sh = {
    enable = true;
    settings = {
      base-url = "https://ping.stuebinm.eu";
      behind-proxy = true;
      listen-http = "";
      listen-unix = "/run/ntfy-sh/ntfy.sock";
      listen-unix-mode = 511; ## lossy nix->yaml conversion eats octal literals (equal to 0777)

      auth-file = "/var/lib/ntfy-sh/user.db";
      auth-default-access = "deny-all";

      enable-signup = false;
      visitor-email-limit-burst = 0;
    };
  };

  services.nginx.virtualHosts."ping.stuebinm.eu" = {
    enableACME = true;
    forceSSL = true;
    locations."/" = {
      proxyPass = "http://unix:/run/ntfy-sh/ntfy.sock";
      proxyWebsockets = true;
    };
  };

  systemd.services.ntfy-sh = {
    serviceConfig = {
      RuntimeDirectory = [ "ntfy-sh" ];
    };
  };
}