feat(nix): add new domain to ACME certificate

- Added `search.hoyer.world` to the `extraDomainNames` list for the `internal.hoyer.world` ACME certificate.
- Ensures proper SSL configuration for the new subdomain.
This commit is contained in:
Harald Hoyer 2026-02-06 11:43:37 +01:00
parent 958175fb01
commit 14c9a4f084

View file

@ -10,12 +10,13 @@
metacfg.services.acmeBase.credentialsFile = config.sops.secrets.internetbs.path;
security.acme.certs = {
"internal.hoyer.world" = {
extraDomainNames = [
"openwebui.hoyer.world"
"syncthing.hoyer.world"
"home.hoyer.world"
];
};
"internal.hoyer.world" = {
extraDomainNames = [
"openwebui.hoyer.world"
"syncthing.hoyer.world"
"home.hoyer.world"
"search.hoyer.world"
];
};
};
}