Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator nginx, Installer nginx
Requesting a certificate for beanstime.live
Performing the following challenges:
http-01 challenge for beanstime.live
Waiting for verification...
Challenge failed for domain beanstime.live
http-01 challenge for beanstime.live
Certbot failed to authenticate some domains (authenticator: nginx). The Certificate Authority reported these problems:
Domain: beanstime.live
Type: unauthorized
Detail: 2a01:4f8:211:958::2: Invalid response from http://beanstime.live/.well-known/acme-challenge/AjwTgwqynhccJw_hCXO4GU3Dfy4xM096WwftqcaMRUI: 404
Hint: The Certificate Authority failed to verify the temporary nginx configuration changes made by Certbot. Ensure the listed domains point to this nginx server and that it is accessible from the internet.
Cleaning up challenges
Some challenges have failed.
@brixxnatt Your problem is not the same. Their server returned the wrong data and yours is returning no data. Since you posted I see you have changed your DNS settings because you no longer have a valid A and/or AAAA record.
If you still have problems after you finish that please start a new thread. You will be shown a form asking for info. Please answer as much as you can. Thank you
Different problem entirely indeed, so I've moved the posts to a new thread.
If you opened this thread yourself in the Help section, you would have been provided with a questionnaire. All the answers to this questionnaire are required:
Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. crt.sh | example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
My domain is:
I ran this command:
It produced this output:
My web server is (include version):
The operating system my web server runs on is (include version):
My hosting provider, if applicable, is:
I can login to a root shell on my machine (yes or no, or I don't know):
I'm using a control panel to manage my site (no, or provide the name and version of the control panel):
The version of my client is (e.g. output of certbot --version or certbot-auto --version if you're using Certbot):
Hint: The Certificate Authority failed to verify the temporary nginx configuration changes made by Certbot. Ensure the listed domains point to this nginx server and that it is accessible from the internet.
Some challenges have failed.
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.
My web server is (include version):nginx/1.18.0 (Ubuntu)
The operating system my web server runs on is (include version):Ubuntu 22.4
My hosting provider, if applicable, is: server provider Hetzner
I can login to a root shell on my machine (yes or no, or I don't know): YES
I'm using a control panel to manage my site (no, or provide the name and version of the control panel): NO
The version of my client is (e.g. output of certbot --version or certbot-auto --version if you're using Certbot): certbot 1.21.0
You need to add the listen statement that I showed. You add that just below the listen statement you already have. Without both of them those server blocks do not get chosen by Nginx to process IPV6 requests. Instead, a default nginx server block gets used. You can see the IPV6 address that Lets Encrypt server used in the error message.
Your DNS is inconsistent but that shouldn't cause a problem with the Let's Encrypt cert request as long as you updated the listen statements as I described. Still, it is something you should fix. It will affect "regular" requests from clients that only support IPv6. This domain still has an AAAA record but none of your other 3 names have one.
tkdsstream.live. 43200 IN AAAA 2a01:4f8:211:958::2
The --nginx plugin normally works very well. Your nginx config is probably not quite right or you have something very unusual in it.
Please show the entire output of sudo nginx -T
The output will be very long but that is needed to help debug your problem.