Updated dnsapi2 (markdown)

nsantorelli
2026-04-13 16:20:06 +02:00
parent 148e8063df
commit 56dc79b226

@@ -129,6 +129,7 @@
- [205. Use Gname.com DNS API](#dns_gname)
- [206. Use cPanel UAPI DNS](#dns_cpanel_uapi)
- [207. Use sitehost.nz DNS API](#dns_sitehost)
- [208. Use EuroDNS DNS API](#dns_eurodns)
- [Use custom API](#dns_myapi)
@@ -3271,6 +3272,29 @@ The `SITEHOST_API_KEY` and `SITEHOST_CLIENT_ID` will be saved in ~/.acme.sh/acco
Report any bugs or issues https://github.com/acmesh-official/acme.sh/issues/6892
## 208. Use EuroDNS DNS API
<a name="dns_eurodns"/>
[EuroDNS](https://www.eurodns.com) is a European domain registrar and DNS provider.
API docs: https://docapi.eurodns.com
```sh
export EURODNS_APP_ID="your_app_id"
export EURODNS_API_KEY="your_api_key"
```
To issue a cert, run command:
```sh
acme.sh --issue --dns dns_eurodns -d example.com -d *.example.com
```
The `EURODNS_APP_ID` and `EURODNS_API_KEY` will be saved in `~/.acme.sh/account.conf` and reused for renewals.
Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/6904)
## Use custom API
<a name="dns_myapi"/>