2017-09-23 09:56:09 +02:00
|
|
|
# nixos-mailserver: a simple mail server
|
|
|
|
# Copyright (C) 2016-2017 Robin Raymond
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with (import ./common.nix { inherit config; });
|
|
|
|
|
|
|
|
let
|
2017-11-09 22:16:06 +01:00
|
|
|
inherit (lib.attrsets) genAttrs;
|
2017-09-23 09:56:09 +02:00
|
|
|
cfg = config.mailserver;
|
2017-11-09 22:13:27 +01:00
|
|
|
allDomains = [ cfg.domain ] ++ cfg.extraDomains;
|
|
|
|
acmeRoot = "/var/lib/acme/acme-challenge";
|
2017-09-23 09:56:09 +02:00
|
|
|
in
|
|
|
|
{
|
2017-11-09 23:17:03 +01:00
|
|
|
config = lib.mkIf (cfg.certificateScheme == 3) {
|
2017-09-23 09:56:09 +02:00
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
2017-11-09 23:17:03 +01:00
|
|
|
virtualHosts = genAttrs (map (domain: "${cfg.hostPrefix}.${domain}") allDomains) (domain: {
|
|
|
|
serverName = "${domain}";
|
2017-11-09 22:13:27 +01:00
|
|
|
forceSSL = true;
|
|
|
|
enableACME = true;
|
|
|
|
locations."/" = {
|
|
|
|
root = "/var/www";
|
|
|
|
};
|
|
|
|
acmeRoot = acmeRoot;
|
|
|
|
});
|
|
|
|
};
|
2017-11-09 22:16:06 +01:00
|
|
|
security.acme.certs."mailserver" = {
|
2017-11-09 23:17:03 +01:00
|
|
|
domain = "${cfg.hostPrefix}.${cfg.domain}";
|
|
|
|
extraDomains = genAttrs (map (domain: "${cfg.hostPrefix}.${domain}") cfg.extraDomains) (domain: null);
|
2017-11-09 22:13:27 +01:00
|
|
|
webroot = acmeRoot;
|
|
|
|
# @todo should we reload postfix here?
|
|
|
|
postRun = ''
|
|
|
|
systemctl reload nginx
|
2017-11-09 23:32:33 +01:00
|
|
|
systemctl reload postfix
|
|
|
|
systemctl reload dovecot2
|
2017-11-09 22:13:27 +01:00
|
|
|
'';
|
2017-09-23 09:56:09 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|