os/hosts/pioneer-momo-koeln/caddy.nix
teutat3s 1268438acd
Some checks failed
continuous-integration/drone/pr Build is failing
Apply treefmt
2023-07-13 20:50:18 +02:00

24 lines
507 B
Nix

{config, ...}: {
# Changing the Caddyfile should only trigger a reload, not a restart
systemd.services.caddy.reloadTriggers = [
config.services.caddy.configFile
];
services.caddy = {
enable = true;
email = "wg-tooling@list.momo.koeln";
virtualHosts = {
"auth.momo.koeln" = {
logFormat = ''
output discard
'';
extraConfig = ''
reverse_proxy :8080
'';
};
};
};
networking.firewall.allowedTCPPorts = [80 443];
}