Updated dnsapi2 (markdown)

CZECHIA-COM
2026-02-13 11:05:41 +01:00
parent c1bb933883
commit bc3d78230e

@@ -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)
<a name="dns_czechia"/>
## 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.
<a name="dns_myapi"/>