CrOS/modules/services/ntfy-sh/default.nix
Crow e0590ff20b
Matrix, Caddy
* Nginx to caddy (#5)

Convert all nginx instances to caddy instances, setup acme as well

* matrix implemented
2025-09-11 14:56:05 -04:00

16 lines
340 B
Nix

{
services.caddy = {
enable = true;
virtualHosts."notify.wanderingcrow.net".extraConfig = ''
reverse_proxy http://localhost:9089
'';
};
services.ntfy-sh = {
enable = true;
settings = {
base-url = "https://notify.wanderingcrow.net";
listen-http = ":9089";
behind-proxy = true;
};
};
}