- Change OpenWebUI host binding from 0.0.0.0 to 127.0.0.1 for security. - Consolidate ACME certificates under internal.hoyer.world with extra domain names. - Update Nginx virtual hosts to use the unified ACME host internal.hoyer.world.
26 lines
516 B
Nix
26 lines
516 B
Nix
{ config
|
|
, ...
|
|
}:
|
|
{
|
|
sops.secrets.internetbs = {
|
|
sopsFile = ../../../.secrets/sgx/internetbs.yaml; # bring your own password file
|
|
};
|
|
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults = {
|
|
email = "harald@hoyer.xyz";
|
|
dnsProvider = "cloudflare";
|
|
credentialsFile = config.sops.secrets.internetbs.path;
|
|
};
|
|
certs = {
|
|
"internal.hoyer.world" = {
|
|
extraDomainNames = [
|
|
"openwebui.hoyer.world"
|
|
"syncthing.hoyer.world"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|