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:
parent
82d9b3b6b2
commit
16b99018c9
|
@ -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"
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue