configuration.nix/hosts/wynne/services/apps/ntfy.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

2024-09-17 23:13:44 +05:30
_:
let
inherit (import ../../../shared/caddy-helpers.nix) logFormat;
domainName = "ntfy.acomputer.lol";
in
{
services = {
caddy.virtualHosts."${domainName}" = {
logFormat = logFormat domainName;
extraConfig = ''
reverse_proxy 127.0.0.1:8080
'';
};
frp.settings.proxies = [
{
name = "http.${domainName}";
type = "http";
customDomains = [ "${domainName}" ];
localPort = 80;
transport.useCompression = true;
}
{
name = "https.${domainName}";
type = "https";
customDomains = [ "${domainName}" ];
localPort = 443;
transport.useCompression = true;
}
];
ntfy-sh = {
enable = true;
settings = {
base-url = "https://${domainName}";
listen-http = "127.0.0.1:8080";
2024-09-17 23:47:19 +05:30
auth-file = "/mnt/data/ntfy-sh/user.db";
attachment-cache-dir = "/mnt/data/ntfy-sh/attachments";
cache-file = "/mnt/data/ntfy-sh/cache-file.db";
auth-default-access = "deny-all";
2024-09-17 23:13:44 +05:30
};
};
};
2024-09-17 23:47:19 +05:30
systemd.services.ntfy-sh.unitConfig.RequiresMountsFor = [ "/mnt/data" ];
systemd.services.ntfy-sh.serviceConfig.WorkingDirectory = [ "/mnt/data/ntfy-sh" ];
2024-09-17 23:13:44 +05:30
}