From 34f94f2d2d129816bf8a99f4036ef2dc326542ff Mon Sep 17 00:00:00 2001 From: Bjarke Bruun <1141860+bbruun@users.noreply.github.com> Date: Thu, 23 Jun 2022 12:04:59 +0200 Subject: [PATCH] Updated dnsapi (markdown) --- dnsapi.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dnsapi.md b/dnsapi.md index 4474d77..f4c4617 100644 --- a/dnsapi.md +++ b/dnsapi.md @@ -2926,6 +2926,29 @@ To issue a wildcard certificate, execute: ./acme.sh --issue --dns dns_fornex -d example.com -d '*.example.com' ``` +## 146. Use DNS.Services API + +Use your DNS.Services credentials + +```sh +export DnsServices_Username=user@example.com +export DnsServices_Password=YouPassword +``` + +To issue certificate, run the following command: + +```sh +./acme.sh --issue --dns dns_dnsservices -d example.com -d www.example.com +``` + +To issue wildcard certificate, run the following command: + +```sh +./acme.sh --issue --dns dns_dnsservices -d example.com -d *.example.com +``` + +The `DnsServices_Username` and `DnsServices_Password` will be saved in ~/.acme.sh/account.conf and will be reused when needed. + # ################## # Use custom API