Add netim

master
ctrlaltca 2025-03-19 14:39:39 +01:00
parent 339e5e6da8
commit d78d66a101
1 changed files with 25 additions and 0 deletions

@ -102,6 +102,7 @@
- [178. Use FreeMyIP DNS API](#dns_freemyip) - [178. Use FreeMyIP DNS API](#dns_freemyip)
- [179. Use Area-7 DNS API](#dns_area7) - [179. Use Area-7 DNS API](#dns_area7)
- [180. Use HestiaCP DNS API](#dns_hestiacp) - [180. Use HestiaCP DNS API](#dns_hestiacp)
- [181. Use Netim DNS API](#dns_netim)
- [Use custom API](#dns_myapi) - [Use custom API](#dns_myapi)
- [Use lexicon DNS API](#dns_lexicon) - [Use lexicon DNS API](#dns_lexicon)
@ -2581,6 +2582,30 @@ Example Usage:
acme.sh --issue -d example.com -d *.example.com --dns dns_hestiacp 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"/> <a name="dns_myapi"/>
## Use custom API ## Use custom API