Updated dnsapi2 (markdown)

trulyliu 2023-01-09 09:38:10 +08:00
parent 200428af42
commit 9eba31a214
1 changed files with 20 additions and 0 deletions

@ -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