security/acme-client: change IP discovery URL, fixes #2419

This commit is contained in:
Frank Wall
2021-07-09 11:49:08 +02:00
parent 661be9e95f
commit a4efaae149
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -19,6 +19,9 @@ Added:
Fixed:
* sftp update of write protected cert files with a numeric owner (#2426)
Changed:
* Namecheap: change IP discovery URL to avoid rate-limits (#2419)
2.5
Added:
@@ -45,7 +45,7 @@ class DnsNamecheap extends Base implements LeValidationInterface
$this->acme_env['NAMECHEAP_SOURCEIP'] = (string)$this->config->dns_namecheap_sourceip;
} else {
// Use a public service to get our source IP for Namecheap API
$this->acme_env['NAMECHEAP_SOURCEIP'] = 'https://ifconfig.co/ip';
$this->acme_env['NAMECHEAP_SOURCEIP'] = 'https://ipinfo.io/ip';
}
}
}