Server: replace traefik with caddy

This commit is contained in:
Toast 2024-07-18 00:45:00 +02:00
parent 5001e70c14
commit 863840b2b1
6 changed files with 33 additions and 77 deletions

11
roles/server/caddy.nix Normal file
View file

@ -0,0 +1,11 @@
{...}: {
services.caddy = {
enable = true;
extraConfig = ''
(tailscale) {
tls internal
bind 100.73.96.48
}
'';
};
}