Merge pull request #821 from chrschn/master

Fix renewal of ECC/ECDSA certificates.
This commit is contained in:
Michael Kaufmann
2020-03-29 23:52:34 +02:00
committed by GitHub

View File

@@ -327,6 +327,9 @@ class AcmeSh extends \Froxlor\Cron\FroxlorCron
}
if (Settings::Get('system.leecc') > 0) {
$acmesh_cmd .= " --keylength ec-" . Settings::Get('system.leecc');
if ($cert_mode != 'issue') {
$acmesh_cmd .= " --ecc";
}
} else {
$acmesh_cmd .= " --keylength " . Settings::Get('system.letsencryptkeysize');
}