feat(tailscale-nginx-auth): protect reverse proxied services behind tailscale authentication

This commit is contained in:
wi11-holdsworth 2026-01-17 16:59:26 +11:00
parent dcbee4635b
commit 63c2583d21
24 changed files with 311 additions and 5 deletions

View file

@ -1,8 +1,15 @@
{
services.tailscale = {
enable = true;
extraSetFlags = [
"--accept-dns=true"
];
services = {
tailscale = {
enable = true;
extraSetFlags = [
"--accept-dns=true"
];
};
tailscaleAuth = {
enable = true;
user = "caddy";
group = "caddy";
};
};
}