feat(bomba): add authentik

This commit is contained in:
2026-07-23 15:46:30 +02:00
parent 6496e7b6ed
commit 1cd710e642
9 changed files with 249 additions and 10 deletions
+4
View File
@@ -15,6 +15,8 @@
465
587
993
3389
6636
25565
27015
];
@@ -22,6 +24,8 @@
53
80
443
3389
6636
34197
];
};
+1
View File
@@ -24,6 +24,7 @@
gitea_registration_token = default;
navidrome_env = default;
yamtrack_env = default;
authentik_env = default;
};
};
}
+15
View File
@@ -0,0 +1,15 @@
{ config, ... }:
{
services.authentik = {
enable = true;
environmentFile = config.sops.secrets.authentik_env.path;
settings = {
disable_startup_analytics = true;
avatars = "initials";
listen = {
ldap = "0.0.0.0:3389";
ldaps = "0.0.0.0:6636";
};
};
};
}
+3
View File
@@ -87,6 +87,9 @@
${basicAuth}
reverse_proxy :${toString config.services.adguardhome.port}
'';
"auth.patrickcanal.it".extraConfig = ''
reverse_proxy :9000
'';
};
};
+1
View File
@@ -3,6 +3,7 @@
imports = [
./actual.nix
./adguard.nix
./authentik.nix
./caddy.nix
./fail2ban.nix
./gitea.nix