Add ACME DNS01 challenge support via libdns

This commit is contained in:
世界
2023-09-16 21:37:22 +08:00
parent c1ffcf365e
commit d17e93384b
10 changed files with 170 additions and 2 deletions

View File

@@ -0,0 +1,31 @@
### Structure
```json
{
"provider": "",
... // Provider Fields
}
```
### Provider Fields
#### Alibaba Cloud DNS
```json
{
"provider": "alidns",
"access_key_id": "",
"access_key_secret": "",
"region_id": ""
}
```
#### Cloudflare
```json
{
"provider": "cloudflare",
"api_token": ""
}
```