2015-12-06 15:55:09 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
|
2015-12-11 16:42:17 +00:00
|
|
|
cfg = config.security.acme;
|
2015-12-06 15:55:09 +00:00
|
|
|
|
2018-02-06 21:08:57 +00:00
|
|
|
certOpts = { name, ... }: {
|
2015-12-06 15:55:09 +00:00
|
|
|
options = {
|
|
|
|
webroot = mkOption {
|
2020-01-15 09:17:11 +00:00
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
2018-02-06 21:08:57 +00:00
|
|
|
example = "/var/lib/acme/acme-challenges";
|
2015-12-08 18:09:19 +00:00
|
|
|
description = ''
|
|
|
|
Where the webroot of the HTTP vhost is located.
|
|
|
|
<filename>.well-known/acme-challenge/</filename> directory
|
2017-06-08 07:46:40 +01:00
|
|
|
will be created below the webroot if it doesn't exist.
|
2015-12-08 18:09:19 +00:00
|
|
|
<literal>http://example.org/.well-known/acme-challenge/</literal> must also
|
|
|
|
be available (notice unencrypted HTTP).
|
|
|
|
'';
|
2015-12-06 15:55:09 +00:00
|
|
|
};
|
|
|
|
|
2019-10-25 23:40:51 +01:00
|
|
|
server = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
ACME Directory Resource URI. Defaults to let's encrypt
|
|
|
|
production endpoint,
|
|
|
|
https://acme-v02.api.letsencrypt.org/directory, if unset.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-04-11 17:28:05 +01:00
|
|
|
domain = mkOption {
|
2018-02-06 21:08:57 +00:00
|
|
|
type = types.str;
|
|
|
|
default = name;
|
2017-04-11 17:28:05 +01:00
|
|
|
description = "Domain to fetch certificate for (defaults to the entry name)";
|
|
|
|
};
|
|
|
|
|
2015-12-06 15:55:09 +00:00
|
|
|
email = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
2020-02-03 21:37:22 +00:00
|
|
|
default = cfg.email;
|
2015-12-06 15:55:09 +00:00
|
|
|
description = "Contact email address for the CA to be able to reach you.";
|
|
|
|
};
|
|
|
|
|
2015-12-08 18:09:19 +00:00
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "root";
|
2015-12-11 16:42:17 +00:00
|
|
|
description = "User running the ACME client.";
|
2015-12-08 18:09:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "root";
|
2015-12-11 16:42:17 +00:00
|
|
|
description = "Group running the ACME client.";
|
2015-12-08 18:09:19 +00:00
|
|
|
};
|
|
|
|
|
2016-01-06 01:59:14 +00:00
|
|
|
allowKeysForGroup = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2017-06-08 07:46:40 +01:00
|
|
|
description = ''
|
|
|
|
Give read permissions to the specified group
|
2018-02-06 23:27:28 +00:00
|
|
|
(<option>security.acme.cert.<name>.group</option>) to read SSL private certificates.
|
2017-06-08 07:46:40 +01:00
|
|
|
'';
|
2016-01-06 01:59:14 +00:00
|
|
|
};
|
|
|
|
|
2015-12-08 18:09:19 +00:00
|
|
|
postRun = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example = "systemctl reload nginx.service";
|
|
|
|
description = ''
|
2017-11-19 15:41:28 +00:00
|
|
|
Commands to run after new certificates go live. Typically
|
2015-12-08 18:09:19 +00:00
|
|
|
the web server and other servers using certificates need to
|
|
|
|
be reloaded.
|
2017-11-19 15:41:28 +00:00
|
|
|
|
|
|
|
Executed in the same directory with the new certificate.
|
2015-12-08 18:09:19 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2019-08-29 15:32:59 +01:00
|
|
|
directory = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
readOnly = true;
|
|
|
|
default = "/var/lib/acme/${name}";
|
|
|
|
description = "Directory where certificate and other state is stored.";
|
2017-11-19 15:41:28 +00:00
|
|
|
};
|
|
|
|
|
2015-12-06 15:55:09 +00:00
|
|
|
extraDomains = mkOption {
|
2015-12-08 18:09:19 +00:00
|
|
|
type = types.attrsOf (types.nullOr types.str);
|
|
|
|
default = {};
|
2017-06-08 07:46:40 +01:00
|
|
|
example = literalExample ''
|
|
|
|
{
|
|
|
|
"example.org" = "/srv/http/nginx";
|
|
|
|
"mydomain.org" = null;
|
|
|
|
}
|
|
|
|
'';
|
2015-12-08 18:09:19 +00:00
|
|
|
description = ''
|
2018-02-06 21:08:57 +00:00
|
|
|
A list of extra domain names, which are included in the one certificate to be issued, with their
|
2015-12-08 18:09:19 +00:00
|
|
|
own server roots if needed.
|
|
|
|
'';
|
2015-12-06 15:55:09 +00:00
|
|
|
};
|
2020-01-12 21:05:57 +00:00
|
|
|
|
2020-01-19 18:24:04 +00:00
|
|
|
keyType = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "ec384";
|
|
|
|
description = ''
|
|
|
|
Key type to use for private keys.
|
|
|
|
For an up to date list of supported values check the --key-type option
|
|
|
|
at https://go-acme.github.io/lego/usage/cli/#usage.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-01-12 21:05:57 +00:00
|
|
|
dnsProvider = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
2020-01-15 09:17:11 +00:00
|
|
|
example = "route53";
|
2020-01-19 18:24:04 +00:00
|
|
|
description = ''
|
|
|
|
DNS Challenge provider. For a list of supported providers, see the "code"
|
|
|
|
field of the DNS providers listed at https://go-acme.github.io/lego/dns/.
|
|
|
|
'';
|
2020-01-12 21:05:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
credentialsFile = mkOption {
|
2020-01-19 18:24:04 +00:00
|
|
|
type = types.path;
|
2020-01-12 21:05:57 +00:00
|
|
|
description = ''
|
2020-01-19 18:24:04 +00:00
|
|
|
Path to an EnvironmentFile for the cert's service containing any required and
|
|
|
|
optional environment variables for your selected dnsProvider.
|
|
|
|
To find out what values you need to set, consult the documentation at
|
|
|
|
https://go-acme.github.io/lego/dns/ for the corresponding dnsProvider.
|
2020-01-12 21:05:57 +00:00
|
|
|
'';
|
|
|
|
example = "/var/src/secrets/example.org-route53-api-token";
|
|
|
|
};
|
|
|
|
|
|
|
|
dnsPropagationCheck = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
2020-01-19 18:24:04 +00:00
|
|
|
Toggles lego DNS propagation check, which is used alongside DNS-01
|
|
|
|
challenge to ensure the DNS entries required are available.
|
2020-01-12 21:05:57 +00:00
|
|
|
'';
|
|
|
|
};
|
2020-02-23 01:51:19 +00:00
|
|
|
|
|
|
|
ocspMustStaple = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Turns on the OCSP Must-Staple TLS extension.
|
|
|
|
Make sure you know what you're doing! See:
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem><para><link xlink:href="https://blog.apnic.net/2019/01/15/is-the-web-ready-for-ocsp-must-staple/" /></para></listitem>
|
|
|
|
<listitem><para><link xlink:href="https://blog.hboeck.de/archives/886-The-Problem-with-OCSP-Stapling-and-Must-Staple-and-why-Certificate-Revocation-is-still-broken.html" /></para></listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
'';
|
|
|
|
};
|
2020-02-23 02:02:44 +00:00
|
|
|
|
|
|
|
extraLegoRenewFlags = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
description = ''
|
|
|
|
Additional flags to pass to lego renew.
|
|
|
|
'';
|
|
|
|
};
|
2015-12-06 15:55:09 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2019-10-25 23:40:51 +01:00
|
|
|
imports = [
|
|
|
|
(mkRemovedOptionModule [ "security" "acme" "production" ] ''
|
|
|
|
Use security.acme.server to define your staging ACME server URL instead.
|
|
|
|
|
|
|
|
To use the let's encrypt staging server, use security.acme.server =
|
|
|
|
"https://acme-staging-v02.api.letsencrypt.org/directory".
|
|
|
|
''
|
|
|
|
)
|
2019-12-10 01:51:19 +00:00
|
|
|
(mkRemovedOptionModule [ "security" "acme" "directory"] "ACME Directory is now hardcoded to /var/lib/acme and its permisisons are managed by systemd. See https://github.com/NixOS/nixpkgs/issues/53852 for more info.")
|
|
|
|
(mkRemovedOptionModule [ "security" "acme" "preDelay"] "This option has been removed. If you want to make sure that something executes before certificates are provisioned, add a RequiredBy=acme-\${cert}.service to the service you want to execute before the cert renewal")
|
|
|
|
(mkRemovedOptionModule [ "security" "acme" "activationDelay"] "This option has been removed. If you want to make sure that something executes before certificates are provisioned, add a RequiredBy=acme-\${cert}.service to the service you want to execute before the cert renewal")
|
2020-01-12 21:05:57 +00:00
|
|
|
(mkChangedOptionModule [ "security" "acme" "validMin"] [ "security" "acme" "validMinDays"] (config: config.security.acme.validMin / (24 * 3600)))
|
2019-10-25 23:40:51 +01:00
|
|
|
];
|
2015-12-06 15:55:09 +00:00
|
|
|
options = {
|
2015-12-11 16:42:17 +00:00
|
|
|
security.acme = {
|
2015-12-06 15:55:09 +00:00
|
|
|
|
2020-01-12 21:05:57 +00:00
|
|
|
validMinDays = mkOption {
|
2015-12-12 13:21:44 +00:00
|
|
|
type = types.int;
|
2020-01-12 21:05:57 +00:00
|
|
|
default = 30;
|
|
|
|
description = "Minimum remaining validity before renewal in days.";
|
|
|
|
};
|
|
|
|
|
|
|
|
email = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = "Contact email address for the CA to be able to reach you.";
|
2015-12-12 13:21:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
renewInterval = mkOption {
|
|
|
|
type = types.str;
|
2020-02-23 01:46:46 +00:00
|
|
|
default = "daily";
|
2015-12-12 13:21:44 +00:00
|
|
|
description = ''
|
|
|
|
Systemd calendar expression when to check for renewal. See
|
|
|
|
<citerefentry><refentrytitle>systemd.time</refentrytitle>
|
2017-03-21 07:27:56 +00:00
|
|
|
<manvolnum>7</manvolnum></citerefentry>.
|
2015-12-12 13:21:44 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2019-10-25 23:40:51 +01:00
|
|
|
server = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
ACME Directory Resource URI. Defaults to let's encrypt
|
|
|
|
production endpoint,
|
|
|
|
<literal>https://acme-v02.api.letsencrypt.org/directory</literal>, if unset.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-06-01 11:39:46 +01:00
|
|
|
preliminarySelfsigned = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether a preliminary self-signed certificate should be generated before
|
|
|
|
doing ACME requests. This can be useful when certificates are required in
|
|
|
|
a webserver, but ACME needs the webserver to make its requests.
|
|
|
|
|
|
|
|
With preliminary self-signed certificate the webserver can be started and
|
|
|
|
can later reload the correct ACME certificates.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-01-12 21:05:57 +00:00
|
|
|
acceptTerms = mkOption {
|
|
|
|
type = types.bool;
|
2020-01-19 18:24:04 +00:00
|
|
|
default = false;
|
2020-01-12 21:05:57 +00:00
|
|
|
description = ''
|
2020-01-19 18:24:04 +00:00
|
|
|
Accept the CA's terms of service. The default provier is Let's Encrypt,
|
|
|
|
you can find their ToS at https://letsencrypt.org/repository/
|
2020-01-12 21:05:57 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-12-06 15:55:09 +00:00
|
|
|
certs = mkOption {
|
|
|
|
default = { };
|
2016-11-16 07:28:27 +00:00
|
|
|
type = with types; attrsOf (submodule certOpts);
|
2015-12-06 15:55:09 +00:00
|
|
|
description = ''
|
2019-08-29 15:32:59 +01:00
|
|
|
Attribute set of certificates to get signed and renewed. Creates
|
|
|
|
<literal>acme-''${cert}.{service,timer}</literal> systemd units for
|
|
|
|
each certificate defined here. Other services can add dependencies
|
|
|
|
to those units if they rely on the certificates being present,
|
|
|
|
or trigger restarts of the service if certificates get renewed.
|
2015-12-06 15:55:09 +00:00
|
|
|
'';
|
2017-06-08 07:46:40 +01:00
|
|
|
example = literalExample ''
|
|
|
|
{
|
|
|
|
"example.com" = {
|
|
|
|
webroot = "/var/www/challenges/";
|
|
|
|
email = "foo@example.com";
|
|
|
|
extraDomains = { "www.example.com" = null; "foo.example.com" = "/var/www/foo/"; };
|
|
|
|
};
|
|
|
|
"bar.example.com" = {
|
|
|
|
webroot = "/var/www/challenges/";
|
|
|
|
email = "bar@example.com";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
2015-12-06 15:55:09 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
2015-12-12 15:06:24 +00:00
|
|
|
config = mkMerge [
|
|
|
|
(mkIf (cfg.certs != { }) {
|
|
|
|
|
2020-01-12 21:05:57 +00:00
|
|
|
assertions = let
|
|
|
|
certs = (mapAttrsToList (k: v: v) cfg.certs);
|
|
|
|
in [
|
|
|
|
{
|
|
|
|
assertion = all (certOpts: certOpts.dnsProvider == null || certOpts.webroot == null) certs;
|
|
|
|
message = ''
|
|
|
|
Options `security.acme.certs.<name>.dnsProvider` and
|
|
|
|
`security.acme.certs.<name>.webroot` are mutually exclusive.
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
{
|
|
|
|
assertion = cfg.email != null || all (certOpts: certOpts.email != null) certs;
|
|
|
|
message = ''
|
|
|
|
You must define `security.acme.certs.<name>.email` or
|
|
|
|
`security.acme.email` to register with the CA.
|
|
|
|
'';
|
|
|
|
}
|
2020-01-19 18:24:04 +00:00
|
|
|
{
|
|
|
|
assertion = cfg.acceptTerms;
|
|
|
|
message = ''
|
|
|
|
You must accept the CA's terms of service before using
|
|
|
|
the ACME module by setting `security.acme.acceptTerms`
|
|
|
|
to `true`. For Let's Encrypt's ToS see https://letsencrypt.org/repository/
|
|
|
|
'';
|
|
|
|
}
|
2020-01-12 21:05:57 +00:00
|
|
|
];
|
|
|
|
|
2016-06-01 11:39:46 +01:00
|
|
|
systemd.services = let
|
|
|
|
services = concatLists servicesLists;
|
|
|
|
servicesLists = mapAttrsToList certToServices cfg.certs;
|
|
|
|
certToServices = cert: data:
|
|
|
|
let
|
2020-01-12 21:05:57 +00:00
|
|
|
# StateDirectory must be relative, and will be created under /var/lib by systemd
|
2019-08-29 15:32:59 +01:00
|
|
|
lpath = "acme/${cert}";
|
2020-01-12 21:05:57 +00:00
|
|
|
apath = "/var/lib/${lpath}";
|
|
|
|
spath = "/var/lib/acme/.lego";
|
2020-02-29 13:17:25 +00:00
|
|
|
fileMode = if data.allowKeysForGroup then "640" else "600";
|
2020-02-03 21:37:22 +00:00
|
|
|
globalOpts = [ "-d" data.domain "--email" data.email "--path" "." "--key-type" data.keyType ]
|
2020-01-12 21:05:57 +00:00
|
|
|
++ optionals (cfg.acceptTerms) [ "--accept-tos" ]
|
2020-01-15 09:17:11 +00:00
|
|
|
++ optionals (data.dnsProvider != null && !data.dnsPropagationCheck) [ "--dns.disable-cp" ]
|
2020-01-12 21:05:57 +00:00
|
|
|
++ concatLists (mapAttrsToList (name: root: [ "-d" name ]) data.extraDomains)
|
|
|
|
++ (if data.dnsProvider != null then [ "--dns" data.dnsProvider ] else [ "--http" "--http.webroot" data.webroot ])
|
2019-10-25 23:40:51 +01:00
|
|
|
++ optionals (cfg.server != null || data.server != null) ["--server" (if data.server == null then cfg.server else data.server)];
|
2020-02-23 01:51:19 +00:00
|
|
|
certOpts = optionals data.ocspMustStaple [ "--must-staple" ];
|
|
|
|
runOpts = escapeShellArgs (globalOpts ++ [ "run" ] ++ certOpts);
|
|
|
|
renewOpts = escapeShellArgs (globalOpts ++
|
|
|
|
[ "renew" "--days" (toString cfg.validMinDays) ] ++
|
2020-02-23 02:02:44 +00:00
|
|
|
certOpts ++ data.extraLegoRenewFlags);
|
2016-06-01 11:39:46 +01:00
|
|
|
acmeService = {
|
|
|
|
description = "Renew ACME Certificate for ${cert}";
|
2016-09-06 16:39:46 +01:00
|
|
|
after = [ "network.target" "network-online.target" ];
|
|
|
|
wants = [ "network-online.target" ];
|
2020-02-29 13:39:55 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2016-06-01 11:39:46 +01:00
|
|
|
serviceConfig = {
|
|
|
|
Type = "oneshot";
|
2019-10-26 23:36:21 +01:00
|
|
|
# With RemainAfterExit the service is considered active even
|
|
|
|
# after the main process having exited, which means when it
|
|
|
|
# gets changed, the activation phase restarts it, meaning
|
|
|
|
# the permissions of the StateDirectory get adjusted
|
|
|
|
# according to the specified group
|
|
|
|
RemainAfterExit = true;
|
2016-06-01 11:39:46 +01:00
|
|
|
User = data.user;
|
|
|
|
Group = data.group;
|
|
|
|
PrivateTmp = true;
|
2020-01-12 21:05:57 +00:00
|
|
|
StateDirectory = "acme/.lego ${lpath}";
|
2020-02-29 13:17:25 +00:00
|
|
|
StateDirectoryMode = if data.allowKeysForGroup then "750" else "700";
|
2020-01-12 21:05:57 +00:00
|
|
|
WorkingDirectory = spath;
|
|
|
|
# Only try loading the credentialsFile if the dns challenge is enabled
|
|
|
|
EnvironmentFile = if data.dnsProvider != null then data.credentialsFile else null;
|
|
|
|
ExecStart = pkgs.writeScript "acme-start" ''
|
|
|
|
#!${pkgs.runtimeShell} -e
|
|
|
|
${pkgs.lego}/bin/lego ${renewOpts} || ${pkgs.lego}/bin/lego ${runOpts}
|
|
|
|
'';
|
2019-12-19 17:34:22 +00:00
|
|
|
ExecStartPost =
|
2019-08-29 15:32:59 +01:00
|
|
|
let
|
2020-02-09 02:09:34 +00:00
|
|
|
keyName = builtins.replaceStrings ["*"] ["_"] data.domain;
|
2019-12-19 17:34:22 +00:00
|
|
|
script = pkgs.writeScript "acme-post-start" ''
|
2019-08-29 15:32:59 +01:00
|
|
|
#!${pkgs.runtimeShell} -e
|
2020-01-12 21:05:57 +00:00
|
|
|
cd ${apath}
|
|
|
|
|
|
|
|
# Test that existing cert is older than new cert
|
2020-02-09 02:09:34 +00:00
|
|
|
KEY=${spath}/certificates/${keyName}.key
|
2020-01-12 21:05:57 +00:00
|
|
|
if [ -e $KEY -a $KEY -nt key.pem ]; then
|
2020-02-09 02:09:34 +00:00
|
|
|
cp -p ${spath}/certificates/${keyName}.key key.pem
|
2020-02-23 03:46:35 +00:00
|
|
|
cp -p ${spath}/certificates/${keyName}.crt fullchain.pem
|
2020-02-09 02:09:34 +00:00
|
|
|
cp -p ${spath}/certificates/${keyName}.issuer.crt chain.pem
|
2020-03-04 09:48:50 +00:00
|
|
|
ln -sf fullchain.pem cert.pem
|
2020-02-23 03:46:35 +00:00
|
|
|
cat key.pem fullchain.pem > full.pem
|
2020-01-12 21:05:57 +00:00
|
|
|
fi
|
|
|
|
|
2020-02-29 13:17:25 +00:00
|
|
|
chmod ${fileMode} *.pem
|
|
|
|
chown '${data.user}:${data.group}' *.pem
|
|
|
|
|
2019-08-29 15:32:59 +01:00
|
|
|
${data.postRun}
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
"+${script}";
|
2016-06-01 11:39:46 +01:00
|
|
|
};
|
2019-08-29 15:32:59 +01:00
|
|
|
|
2017-11-19 15:41:28 +00:00
|
|
|
};
|
2016-06-01 11:39:46 +01:00
|
|
|
selfsignedService = {
|
|
|
|
description = "Create preliminary self-signed certificate for ${cert}";
|
2018-04-03 10:09:45 +01:00
|
|
|
path = [ pkgs.openssl ];
|
2018-04-29 18:30:09 +01:00
|
|
|
script =
|
2016-06-01 11:39:46 +01:00
|
|
|
''
|
2018-04-03 10:09:45 +01:00
|
|
|
workdir="$(mktemp -d)"
|
|
|
|
|
|
|
|
# Create CA
|
2018-05-23 23:52:05 +01:00
|
|
|
openssl genrsa -des3 -passout pass:xxxx -out $workdir/ca.pass.key 2048
|
|
|
|
openssl rsa -passin pass:xxxx -in $workdir/ca.pass.key -out $workdir/ca.key
|
2018-04-03 10:09:45 +01:00
|
|
|
openssl req -new -key $workdir/ca.key -out $workdir/ca.csr \
|
|
|
|
-subj "/C=UK/ST=Warwickshire/L=Leamington/O=OrgName/OU=Security Department/CN=example.com"
|
|
|
|
openssl x509 -req -days 1 -in $workdir/ca.csr -signkey $workdir/ca.key -out $workdir/ca.crt
|
|
|
|
|
|
|
|
# Create key
|
2018-05-23 23:52:05 +01:00
|
|
|
openssl genrsa -des3 -passout pass:xxxx -out $workdir/server.pass.key 2048
|
|
|
|
openssl rsa -passin pass:xxxx -in $workdir/server.pass.key -out $workdir/server.key
|
2018-04-03 10:09:45 +01:00
|
|
|
openssl req -new -key $workdir/server.key -out $workdir/server.csr \
|
2016-06-01 11:39:46 +01:00
|
|
|
-subj "/C=UK/ST=Warwickshire/L=Leamington/O=OrgName/OU=IT Department/CN=example.com"
|
2018-04-03 10:09:45 +01:00
|
|
|
openssl x509 -req -days 1 -in $workdir/server.csr -CA $workdir/ca.crt \
|
|
|
|
-CAkey $workdir/ca.key -CAserial $workdir/ca.srl -CAcreateserial \
|
|
|
|
-out $workdir/server.crt
|
2016-06-01 11:39:46 +01:00
|
|
|
|
2018-04-03 10:09:45 +01:00
|
|
|
# Copy key to destination
|
2020-01-12 21:05:57 +00:00
|
|
|
cp $workdir/server.key ${apath}/key.pem
|
2016-06-01 11:39:46 +01:00
|
|
|
|
2018-04-03 10:09:45 +01:00
|
|
|
# Create fullchain.pem (same format as "simp_le ... -f fullchain.pem" creates)
|
2020-01-12 21:05:57 +00:00
|
|
|
cat $workdir/{server.crt,ca.crt} > "${apath}/fullchain.pem"
|
2017-06-07 20:38:01 +01:00
|
|
|
|
2018-04-03 10:09:45 +01:00
|
|
|
# Create full.pem for e.g. lighttpd
|
2020-01-12 21:05:57 +00:00
|
|
|
cat $workdir/{server.key,server.crt,ca.crt} > "${apath}/full.pem"
|
2016-06-01 11:39:46 +01:00
|
|
|
|
|
|
|
# Give key acme permissions
|
2020-01-12 21:05:57 +00:00
|
|
|
chown '${data.user}:${data.group}' "${apath}/"{key,fullchain,full}.pem
|
2020-02-29 13:17:25 +00:00
|
|
|
chmod ${fileMode} "${apath}/"{key,fullchain,full}.pem
|
2016-06-01 11:39:46 +01:00
|
|
|
'';
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "oneshot";
|
2018-04-03 10:09:45 +01:00
|
|
|
PrivateTmp = true;
|
2019-08-29 15:32:59 +01:00
|
|
|
StateDirectory = lpath;
|
2016-06-01 11:39:46 +01:00
|
|
|
User = data.user;
|
|
|
|
Group = data.group;
|
|
|
|
};
|
|
|
|
unitConfig = {
|
|
|
|
# Do not create self-signed key when key already exists
|
2020-01-12 21:05:57 +00:00
|
|
|
ConditionPathExists = "!${apath}/key.pem";
|
2016-06-01 11:39:46 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
in (
|
|
|
|
[ { name = "acme-${cert}"; value = acmeService; } ]
|
2017-11-19 15:41:28 +00:00
|
|
|
++ optional cfg.preliminarySelfsigned { name = "acme-selfsigned-${cert}"; value = selfsignedService; }
|
2016-06-01 11:39:46 +01:00
|
|
|
);
|
|
|
|
servicesAttr = listToAttrs services;
|
|
|
|
in
|
2019-08-29 15:32:59 +01:00
|
|
|
servicesAttr;
|
|
|
|
|
|
|
|
systemd.tmpfiles.rules =
|
2020-01-15 09:17:11 +00:00
|
|
|
map (data: "d ${data.webroot}/.well-known/acme-challenge - ${data.user} ${data.group}") (filter (data: data.webroot != null) (attrValues cfg.certs));
|
2015-12-12 15:06:24 +00:00
|
|
|
|
2020-02-23 01:46:46 +00:00
|
|
|
systemd.timers = let
|
|
|
|
# Allow systemd to pick a convenient time within the day
|
|
|
|
# to run the check.
|
|
|
|
# This allows the coalescing of multiple timer jobs.
|
|
|
|
# We divide by the number of certificates so that if you
|
|
|
|
# have many certificates, the renewals are distributed over
|
|
|
|
# the course of the day to avoid rate limits.
|
|
|
|
numCerts = length (attrNames cfg.certs);
|
|
|
|
_24hSecs = 60 * 60 * 24;
|
|
|
|
AccuracySec = "${toString (_24hSecs / numCerts)}s";
|
|
|
|
in flip mapAttrs' cfg.certs (cert: data: nameValuePair
|
2015-12-12 15:06:24 +00:00
|
|
|
("acme-${cert}")
|
|
|
|
({
|
2016-04-18 10:52:31 +01:00
|
|
|
description = "Renew ACME Certificate for ${cert}";
|
2015-12-12 15:06:24 +00:00
|
|
|
wantedBy = [ "timers.target" ];
|
|
|
|
timerConfig = {
|
|
|
|
OnCalendar = cfg.renewInterval;
|
2015-12-13 13:53:59 +00:00
|
|
|
Unit = "acme-${cert}.service";
|
2016-08-10 18:37:11 +01:00
|
|
|
Persistent = "yes";
|
2020-02-23 01:46:46 +00:00
|
|
|
inherit AccuracySec;
|
|
|
|
# Skew randomly within the day, per https://letsencrypt.org/docs/integration-guide/.
|
|
|
|
RandomizedDelaySec = "24h";
|
2015-12-12 15:06:24 +00:00
|
|
|
};
|
|
|
|
})
|
|
|
|
);
|
2016-06-01 11:39:46 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
systemd.targets.acme-selfsigned-certificates = mkIf cfg.preliminarySelfsigned {};
|
|
|
|
systemd.targets.acme-certificates = {};
|
2015-12-12 15:06:24 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
];
|
2015-12-06 15:55:09 +00:00
|
|
|
|
2016-05-09 06:53:27 +01:00
|
|
|
meta = {
|
2020-01-12 21:05:57 +00:00
|
|
|
maintainers = with lib.maintainers; [ abbradar fpletz globin m1cr0man ];
|
2016-05-09 06:53:27 +01:00
|
|
|
doc = ./acme.xml;
|
|
|
|
};
|
2015-12-06 15:55:09 +00:00
|
|
|
}
|