From da689174d8a781336f6be52d78924087b778ccc9 Mon Sep 17 00:00:00 2001 From: Niklas Karoly Date: Sun, 26 Jun 2022 16:15:37 +0200 Subject: [PATCH] Add Nodion DNS API as #147 --- dnsapi.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dnsapi.md b/dnsapi.md index 416b7d5..30e54e5 100644 --- a/dnsapi.md +++ b/dnsapi.md @@ -2943,6 +2943,26 @@ To issue a wildcard certificate, run command: ./acme.sh --issue --dns dns_dnsservices -d example.com -d '*.example.com' +## 147. Use Nodion DNS API + +You are able to create a free account on [app.nodion.com](https://app.nodion.com) and add an API key used by acme.sh by visiting the [settings page](https://app.nodion.com/user/security). Please take this token and set it as env variable. + +```sh +export NODION_API_KEY="Token" +``` +To issue a certificate, execute: + +```sh +acme.sh --issue --dns dns_nodion -d example.com +``` + +To issue a wildcard certificate, execute: + +```sh +acme.sh --issue --dns dns_nodion -d *.example.com +``` + + # ################## # Use custom API