Add netim
parent
339e5e6da8
commit
d78d66a101
25
dnsapi2.md
25
dnsapi2.md
|
@ -102,6 +102,7 @@
|
|||
- [178. Use FreeMyIP DNS API](#dns_freemyip)
|
||||
- [179. Use Area-7 DNS API](#dns_area7)
|
||||
- [180. Use HestiaCP DNS API](#dns_hestiacp)
|
||||
- [181. Use Netim DNS API](#dns_netim)
|
||||
- [Use custom API](#dns_myapi)
|
||||
- [Use lexicon DNS API](#dns_lexicon)
|
||||
|
||||
|
@ -2581,6 +2582,30 @@ Example Usage:
|
|||
acme.sh --issue -d example.com -d *.example.com --dns dns_hestiacp
|
||||
```
|
||||
|
||||
<a name="dns_netim"/>
|
||||
|
||||
## 181. Use Netim DNS API
|
||||
|
||||
You need a reseller account to access the DNS API.
|
||||
|
||||
API Key Setup:
|
||||
1. Log in to Netim Direct with a reseller account
|
||||
2. Go to Account -> Personal information and find your "UserID:"
|
||||
3. Use the same pasword used to login on Netim Direct
|
||||
|
||||
Before running `acme.sh` script, you need to provide your user and secret:
|
||||
|
||||
```sh
|
||||
export NETIM_USER='XX1234'
|
||||
export NETIM_SECRET='mypassword'
|
||||
```
|
||||
|
||||
To issue your certificate run:
|
||||
|
||||
```sh
|
||||
./acme.sh --issue --dns dns_netim -d example.domain.com
|
||||
```
|
||||
|
||||
<a name="dns_myapi"/>
|
||||
|
||||
## Use custom API
|
||||
|
|
Loading…
Reference in New Issue