Skip to content

Commit 69adee8

Browse files
author
Thom
committed
Don't request ECC (new acme.sh default) certificate (#6458)
1 parent 7b15d04 commit 69adee8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/lib/installer_base.lib.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3145,11 +3145,11 @@ public function make_ispconfig_ssl_cert() {
31453145
$out = null;
31463146
$ret = null;
31473147
if($conf['nginx']['installed'] == true || $conf['apache']['installed'] == true) {
3148-
exec("$acme --issue --log $acme_log -w /usr/local/ispconfig/interface/acme -d " . escapeshellarg($hostname) . " $renew_hook", $out, $ret);
3148+
exec("$acme --issue --keylength 4096 --log $acme_log -w /usr/local/ispconfig/interface/acme -d " . escapeshellarg($hostname) . " $renew_hook", $out, $ret);
31493149
}
31503150
// Else, it is not webserver, so we use standalone
31513151
else {
3152-
exec("$acme --issue --log $acme_log --standalone -d " . escapeshellarg($hostname) . " $hook", $out, $ret);
3152+
exec("$acme --issue --keylength 4096 --log $acme_log --standalone -d " . escapeshellarg($hostname) . " $hook", $out, $ret);
31533153
}
31543154

31553155
if($ret == 0 || ($ret == 2 && file_exists($check_acme_file))) {

0 commit comments

Comments
 (0)