Skip to content
Snippets Groups Projects
Commit 8e01888c authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

certbot requires ``--expand`` to add more domains to the cert

parent f12f288d
Branches
No related tags found
No related merge requests found
......@@ -195,7 +195,7 @@ in {
# Register if necessary.
${pkgs.certbot}/bin/certbot register ${configArgs} --non-interactive --agree-tos -m ${cfg.letsEncryptAdminEmail} || true
# Obtain the certificate.
${pkgs.certbot}/bin/certbot certonly ${configArgs} --non-interactive --standalone --domains ${builtins.concatStringsSep "," cfg.domains}
${pkgs.certbot}/bin/certbot certonly ${configArgs} --non-interactive --standalone --expand --domains ${builtins.concatStringsSep "," cfg.domains}
'';
};
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment