feat: Update certificate scheme in mailserver

This commit updates the certificate scheme configuration on the mailserver. The `certificateScheme` and `acmeCertificateName` have been added, and an unnecessary certificate reference in the `acme.nix` file has been deleted.
This commit is contained in:
Harald Hoyer 2024-07-05 09:54:35 +02:00
parent 82d9b3b6b2
commit 16b99018c9
2 changed files with 3 additions and 4 deletions

View file

@ -12,8 +12,6 @@
credentialsFile = config.sops.secrets.internetbs.path; credentialsFile = config.sops.secrets.internetbs.path;
}; };
certs = { certs = {
"mx.surfsite.org" = { };
"surfsite.org" = { "surfsite.org" = {
extraDomainNames = [ extraDomainNames = [
"*.surfsite.org" "*.surfsite.org"

View file

@ -5,6 +5,8 @@
enable = true; enable = true;
fqdn = "mx.surfsite.org"; fqdn = "mx.surfsite.org";
sendingFqdn = "mx.surfsite.org"; sendingFqdn = "mx.surfsite.org";
certificateScheme = "acme";
acmeCertificateName = "surfsite.org";
domains = [ domains = [
"harald-hoyer.de" "harald-hoyer.de"
"hartwin-hoyer.de" "hartwin-hoyer.de"
@ -206,8 +208,7 @@
]; ];
}; };
}; };
certificateScheme = "acme"; };
};
services.roundcube = { services.roundcube = {
enable = true; enable = true;