Add Contellix dnsapi

woutd 2020-02-08 12:35:06 +01:00
parent 1251c3287f
commit e82aee8411

@ -2002,6 +2002,21 @@ acme.sh --issue --dns dns_kas -d example.com -d www.example.com
```
The `KAS_Login`, `KAS_Authtype` and `KAS_Authdata` will be saved in `~/.acme.sh/account.conf` and will be reused when needed.
## 99. Use Constellix domain API
Get your API credentials at https://manage.constellix.com/users
```
export CONSTELLIX_Key="XXX"
export CONSTELLIX_Secret="XXX"
```
To issue a cert:
```
acme.sh --issue --dns dns_constellix -d example.com -d www.example.com
```
The `CONSTELLIX_Key` and `CONSTELLIX_Secret` will be saved in `~/.acme.sh/account.conf` and will be reused when needed.
-----------------------------------