Skip to content
Commits on Source (2)
...@@ -3145,11 +3145,11 @@ class installer_base { ...@@ -3145,11 +3145,11 @@ class installer_base {
$out = null; $out = null;
$ret = null; $ret = null;
if($conf['nginx']['installed'] == true || $conf['apache']['installed'] == true) { if($conf['nginx']['installed'] == true || $conf['apache']['installed'] == true) {
exec("$acme --issue --log $acme_log -w /usr/local/ispconfig/interface/acme -d " . escapeshellarg($hostname) . " $renew_hook", $out, $ret); exec("$acme --issue --keylength 4096 --log $acme_log -w /usr/local/ispconfig/interface/acme -d " . escapeshellarg($hostname) . " $renew_hook", $out, $ret);
} }
// Else, it is not webserver, so we use standalone // Else, it is not webserver, so we use standalone
else { else {
exec("$acme --issue --log $acme_log --standalone -d " . escapeshellarg($hostname) . " $hook", $out, $ret); exec("$acme --issue --keylength 4096 --log $acme_log --standalone -d " . escapeshellarg($hostname) . " $hook", $out, $ret);
} }
if($ret == 0 || ($ret == 2 && file_exists($check_acme_file))) { if($ret == 0 || ($ret == 2 && file_exists($check_acme_file))) {
......