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

14 lines
193 B
Nix
Raw Normal View History

_:
let
domainName = "ntfy.acomputer.lol";
in
{
services = {
caddy.virtualHosts."${domainName}" = {
extraConfig = ''
reverse_proxy 10.10.10.13:8080
'';
};
};
}