diff --git a/Posh-ACME/Plugins/DomainOffensive.ps1 b/Posh-ACME/Plugins/DomainOffensive.ps1 index 4063425e..67f6150f 100644 --- a/Posh-ACME/Plugins/DomainOffensive.ps1 +++ b/Posh-ACME/Plugins/DomainOffensive.ps1 @@ -21,7 +21,7 @@ function Add-DnsTxt { } Write-Verbose "Adding $RecordName with value $TxtValue on Domain Offensive" - $uri = "https://www.do.de/api/letsencrypt?token=$DomOffTokenInsecure&domain=$RecordName&value=$TxtValue" + $uri = "https://my.do.de/api/letsencrypt?token=$DomOffTokenInsecure&domain=$RecordName&value=$TxtValue" try { $response = Invoke-RestMethod -Method Get -Uri $uri @script:UseBasic -EA Stop } catch { throw } @@ -61,7 +61,7 @@ function Add-DnsTxt { Adds the specified TXT record with the specified value using a standard string token. .LINK - https://www.do.de/wiki/LetsEncrypt_-_Entwickler + https://www.do.de/wiki/freie-ssl-tls-zertifikate-ueber-acme/ #> } @@ -86,7 +86,7 @@ function Remove-DnsTxt { } Write-Verbose "Removing $RecordName with value $TxtValue on Domain Offensive" - $uri = "https://www.do.de/api/letsencrypt?token=$DomOffTokenInsecure&domain=$RecordName&action=delete" + $uri = "https://my.do.de/api/letsencrypt?token=$DomOffTokenInsecure&domain=$RecordName&action=delete" try { $response = Invoke-RestMethod -Method Get -Uri $uri @script:UseBasic -EA Stop } catch { throw } @@ -123,7 +123,7 @@ function Remove-DnsTxt { Removes the specified TXT record with the specified value using a standard string token. .LINK - https://www.do.de/wiki/LetsEncrypt_-_Entwickler + https://www.do.de/wiki/freie-ssl-tls-zertifikate-ueber-acme/ #> } diff --git a/docs/Plugins/DomainOffensive.md b/docs/Plugins/DomainOffensive.md index b09ce3f1..690c181f 100644 --- a/docs/Plugins/DomainOffensive.md +++ b/docs/Plugins/DomainOffensive.md @@ -6,7 +6,7 @@ This plugin works against the [Domain Offensive](https://www.do.de/) DNS provide ## Setup -We need to retrieve an secret API token for the account that will be used to update DNS records. Further information can ba found at the (german) [developer docs](https://www.do.de/wiki/LetsEncrypt_-_Entwickler). +We need to retrieve an secret API token for the account that will be used to update DNS records. Further information can be found at the (german) [developer docs](https://www.do.de/wiki/freie-ssl-tls-zertifikate-ueber-acme/). ## Using the Plugin