Add Nanelo DNS option

master
An | Anton Röhm 2023-03-01 12:09:40 +01:00
parent e78cb7d422
commit ffc591cf67
1 changed files with 19 additions and 0 deletions

@ -1643,7 +1643,26 @@ To issue a wildcard certificate, run command:
./acme.sh --issue --dns dns_ipv64 -d example.com -d \*.example.com ./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 # Use custom API