Compare commits

...

2 commits

Author SHA1 Message Date
sid
e74970f142 vaultwarden: disable local nginx
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 16s
Flake check / flake-check (pull_request) Successful in 16s
2026-04-03 15:56:27 +02:00
sid
5f408cc956 intranet uses hetzner instead of webroot 2026-04-03 15:49:39 +02:00
2 changed files with 2 additions and 1 deletions

View file

@ -15,7 +15,7 @@ in
dbBackend = "postgresql"; dbBackend = "postgresql";
configurePostgres = true; configurePostgres = true;
configureNginx = true; configureNginx = false;
domain = fqdn; domain = fqdn;
environmentFile = [ config.sops.templates."vaultwarden/env-file".path ]; environmentFile = [ config.sops.templates."vaultwarden/env-file".path ];

View file

@ -46,6 +46,7 @@ in
security.acme = { security.acme = {
certs."${constants.intranet}" = { certs."${constants.intranet}" = {
domain = "*.${constants.intranet}"; domain = "*.${constants.intranet}";
webroot = null;
dnsProvider = "hetzner"; dnsProvider = "hetzner";
credentialsFile = config.sops.secrets.hetzner-dns-api-key.path; credentialsFile = config.sops.secrets.hetzner-dns-api-key.path;
}; };