From 19cc5576ae9414267ef72e1a00df7e18bd4d9773 Mon Sep 17 00:00:00 2001 From: Andreas Scherer Date: Wed, 2 Feb 2022 11:44:28 +0100 Subject: [PATCH] Added united-domains reselling DNS API --- dnsapi.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/dnsapi.md b/dnsapi.md index 2fec42a..331ea68 100644 --- a/dnsapi.md +++ b/dnsapi.md @@ -2838,6 +2838,28 @@ S-dns nameservers use anycast. It is therefore possible that the server next to acme.sh --issue --dns dns_sdns --domain example.com --dnssleep 240 ``` +## 141. Using the united-domains reselling DNS API + +Create an account at [ud reselling](https://www.ud-reselling.com/). + +There is no option to use an API key, so you just need to set your credentials as environment variables: + +```sh +export UDR_USER="..." +export UDR_PASS="..." +``` + +To issue a certificate, execute: +```sh +acme.sh --issue --dns dns_udr -d example.com -d www.example.com +``` + +To issue a wildcard certificate, execute: +```sh +acme.sh --issue --dns dns_udr -d example.com -d *.example.com +``` + +The `UDR_USER` and `UDR_PASS` will be saved in `~/.acme.sh/account.conf` and will be reused when needed. # ################## # Use custom API