- Added `search.hoyer.world` to the `extraDomainNames` list for the `internal.hoyer.world` ACME certificate. - Ensures proper SSL configuration for the new subdomain.
22 lines
455 B
Nix
22 lines
455 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
sops.secrets.internetbs = {
|
|
sopsFile = ../../../.secrets/sgx/internetbs.yaml; # bring your own password file
|
|
};
|
|
|
|
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"
|
|
"search.hoyer.world"
|
|
];
|
|
};
|
|
};
|
|
}
|