diff --git a/dnsapi2.md b/dnsapi2.md index 98fd344..cd95faa 100644 --- a/dnsapi2.md +++ b/dnsapi2.md @@ -80,6 +80,7 @@ - [155. Use IPv64 DNS API](#dns_ipv64) - [156. Use Nanelo DNS API](#dns_nanelo) - [157. Use Google Domains DNS API](#dns_googledomains) +- [158. Use DNSExit API](#dns_dnsexit) - [Use custom API](#dns_myapi) - [Use lexicon DNS API](#dns_lexicon) @@ -1932,6 +1933,33 @@ export GOOGLEDOMAINS_ZONE="google-domains-zone" ``` + + + +## 158. Use DNSExit API to automatically issue cert + + +You'll need an API key for your DNSExit account which you can find under your Account Profile. You will also need your account login (username and password). + +```sh +export DNSEXIT_API_KEY="" +export DNSEXIT_AUTH_USER="" +export DNSEXIT_AUTH_PASS="" +``` + +To issue a cert, run the following: +```sh +./acme.sh --issue --dns dns_dnsexit -d example.com -d *.example.com +``` + + +The login variables will be saved in ~/.acme.sh/account.conf and will be reused when needed. + +Please report any bugs/issues [here](https://github.com/acmesh-official/acme.sh/issues/4719). + + + + ## Use custom API