Skip to content
Snippets Groups Projects
Commit e2873fd2 authored by Till Brehm's avatar Till Brehm
Browse files

Merge branch 'patch-3' into 'develop'

Missing -d $hostname

See merge request ispconfig/ispconfig3!1171
parents ab5306f2 3362854d
No related branches found
No related tags found
No related merge requests found
......@@ -2841,9 +2841,9 @@ class installer_base {
// If this is a webserver
if($conf['nginx']['installed'] == true)
exec("$le_client $certonly $acme_version --nginx --email postmaster@$hostname $renew_hook");
exec("$le_client $certonly $acme_version --nginx --email postmaster@$hostname -d $hostname $renew_hook");
elseif($conf['apache']['installed'] == true)
exec("$le_client $certonly $acme_version --apache --email postmaster@$hostname $renew_hook");
exec("$le_client $certonly $acme_version --apache --email postmaster@$hostname -d $hostname $renew_hook");
// Else, it is not webserver, so we use standalone
else
exec("$le_client $certonly $acme_version --standalone --email postmaster@$hostname -d $hostname $hook");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment