From bc3d78230ea7f97912a9a823968971d64a251229 Mon Sep 17 00:00:00 2001 From: CZECHIA-COM Date: Fri, 13 Feb 2026 11:05:41 +0100 Subject: [PATCH] Updated dnsapi2 (markdown) --- dnsapi2.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dnsapi2.md b/dnsapi2.md index 67f7355..056a38d 100644 --- a/dnsapi2.md +++ b/dnsapi2.md @@ -117,6 +117,7 @@ - [193. Use mgw-media.de DNS API](#dns_mgwm) - [194. Use VirakCloud DNS API](#dns_virakcloud) - [195. Use OPusDNS DNS API](#dns_opusdns) +- [196. Use CZECHIA.COM DNS API](#dns_czechia) - [Use custom API](#dns_myapi) - [Use lexicon DNS API](#dns_lexicon) @@ -2983,6 +2984,41 @@ Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issu Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/6761) + + +## 196. Use CZECHIA.COM DNS API +Get your API Authorization Token from the CZECHIA/RegZone, see [here](https://www.regzone.info/rest-api-terms) + +Export the required credentials: + +``` sh +export CZ_AuthorizationToken="your_api_token" +export CZ_Zone="example.com" +``` + +If you manage multiple zones, you can specify them as a comma-separated +list: + +``` sh +export CZ_Zones="example.com,example.net" +``` + +Then issue a certificate using the dns_czechia provider: + +``` sh +acme.sh --issue --dns dns_czechia -d example.com -d '*.example.com' +``` + +Notes: + +- `CZ_Zone` (or `CZ_Zones`) must contain the apex domain name(s), not + the `_acme-challenge` subdomain. +- TXT record changes for ACME DNS-01 validation do not require IP + whitelisting. +- Credentials are automatically saved to `account.conf` for future + renewals. + +