I just found out one of my wildcard certs had not renewed and is now expired. Luckily, this i on a backup server and the main one will still be valid for a month. I am running (worked fine until I noticed today)
/usr/bin/docker run --rm \
-v /var/lib/letsencrypt:/var/lib/letsencrypt \
-v /etc/letsencrypt:/etc/letsencrypt \
-v /mnt/ServerData/var/log/letsencrypt:/var/log/letsencrypt \
--cap-drop=all \
-e TZ="Europe/Amsterdam" \
miigotu/certbot-dns-godaddy certbot certonly \
-v --authenticator dns-godaddy \
--dns-godaddy-propagation-seconds 900 \
--dns-godaddy-credentials /var/lib/letsencrypt/godaddy_credentials.ini \
--keep-until-expiring --non-interactive --expand \
--server https://acme-v02.api.letsencrypt.org/directory \
--agree-tos --email "hostmaster@rna.nl" \
-d rna.nl -d '*.rna.nl'
and the result is:
Certificate is due for renewal, auto-renewing...
Renewing an existing certificate for rna.nl and *.rna.nl
Performing the following challenges:
dns-01 challenge for rna.nl
dns-01 challenge for rna.nl
Cleaning up challenges
Error determining zone identifier for rna.nl: 403 Client Error: Forbidden for url: https://api.godaddy.com/v1/domains/rna.nl.
Ask for help or search for solutions at https://community.letsencrypt.org. See the logfile /var/log/letsencrypt/letsencrypt.log or re-run Certbot with -v for more details.
I suspect (because of the 403) that I've lost access to the API (as per https://community.certifytheweb.com/t/dns-update-failed-godaddy-dns-api-failed-to-determine-root-domain-in-zone/2237/7) as per changed rules of GoDaddy. If so, this is the end of GoDaddy for me. Am I correct? Or is there something that can be done?
I just found out one of my wildcard certs had not renewed and is now expired. Luckily, this i on a backup server and the main one will still be valid for a month. I am running (worked fine until I noticed today)
and the result is:
I suspect (because of the 403) that I've lost access to the API (as per https://community.certifytheweb.com/t/dns-update-failed-godaddy-dns-api-failed-to-determine-root-domain-in-zone/2237/7) as per changed rules of GoDaddy. If so, this is the end of GoDaddy for me. Am I correct? Or is there something that can be done?