From 9eba31a2145be61978d27d7e659fa13ae4faf6c8 Mon Sep 17 00:00:00 2001 From: trulyliu Date: Mon, 9 Jan 2023 09:38:10 +0800 Subject: [PATCH] Updated dnsapi2 (markdown) --- dnsapi2.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dnsapi2.md b/dnsapi2.md index 90675735..2e55e3f7 100644 --- a/dnsapi2.md +++ b/dnsapi2.md @@ -1580,6 +1580,26 @@ To issue a wildcard certificate, run command: ./acme.sh --issue --dns dns_rage4 -d example.com -d *.example.com ``` +## 153. Use GCore DNS API + +Login to your [GCore](https://accounts.gcore.com/profile/api-tokens) account and create an API Key. + +```sh +export GCORE_KEY="your_gcore_api_key" +``` + +To issue a cert, run command: + +```sh +./acme.sh --issue --dns dns_gcore -d example.com +``` + +To issue a wildcard certificate, run command: + +```sh +./acme.sh --issue --dns dns_gcore -d example.com -d \*.example.com +``` + # ################## # Use custom API