security/acme-client: fix Aliyun DNS API, closes #2200

This commit is contained in:
Frank Wall
2021-01-24 22:02:40 +01:00
parent 4850414eba
commit 7c0b4717dc
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -15,6 +15,7 @@ Added:
Fixed:
* fix "auto renewal" options not working in certificate and plugin settings (#2178)
* fix Aliyun DNS API (#2200)
2.2
@@ -40,6 +40,6 @@ class DnsAli extends Base implements LeValidationInterface
public function prepare()
{
$this->acme_env['Ali_Key'] = (string)$this->config->dns_ali_key;
$this->acme_env['Ali_Secret'] = (string)$this->config->dns_ali_key;
$this->acme_env['Ali_Secret'] = (string)$this->config->dns_ali_secret;
}
}