From ffc591cf6708a8968aee0725958cfb72f911461f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=20=7C=20Anton=20R=C3=B6hm?= <18481195+AnTheMaker@users.noreply.github.com> Date: Wed, 1 Mar 2023 12:09:40 +0100 Subject: [PATCH] Add Nanelo DNS option --- dnsapi2.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/dnsapi2.md b/dnsapi2.md index 84e920f..da2f1e9 100644 --- a/dnsapi2.md +++ b/dnsapi2.md @@ -1643,7 +1643,26 @@ To issue a wildcard certificate, run command: ./acme.sh --issue --dns dns_ipv64 -d example.com -d \*.example.com ``` +## 156. Use Nanelo DNS API +Login to your [Nanelo](https://nanelo.com) Account, navigate to Settings > API Keys and generate a new API Key. Copy it and set it like the following: + +```sh +export NANELO_TOKEN="your_nanelo_api_key" +``` + +To issue a cert, run the following command: + +```sh +./acme.sh --issue --dns dns_nanelo -d example.com +``` + +To issue a wildcard certificate, run the following command: + +```sh +./acme.sh --issue --dns dns_nanelo -d example.com -d *.example.com +``` +Please report any bugs/issues regarding the Nanelo DNS Integration [here](https://github.com/acmesh-official/acme.sh/issues/4519). # ################## # Use custom API