blob: c050ef4f0954600b24a4124cf4e4d49b5d96c446 (
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
|
{
lib,
config,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.modules."notifications.linus.onl";
in {
options.modules."notifications.linus.onl" = {
enable = mkEnableOption "notifications.linus.onl static site";
useACME = mkEnableOption "built-in HTTPS stuff";
};
config = mkIf cfg.enable {
services.push-notification-api = {
enable = true;
};
# Register domain name.
services.cloudflare-dyndns.domains = ["notifications.linus.onl"];
# Use NGINX as reverse proxy.
services.nginx.virtualHosts."notifications.linus.onl" = {
enableACME = cfg.useACME;
forceSSL = cfg.useACME;
locations."/" = {
recommendedProxySettings = true;
proxyPass = "http://unix:/run/push-notification-api.sock";
};
};
};
}
|