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: meteomaingournois.dyndns.org
I ran this command:
sudo certbot -v certonly --manual --dry-run -d meteomaingournois.dyndns.org
with the option U (Update)
or sudo certbot -v renew --dry-run
It produced this output:
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator manual, Installer None
An RSA certificate named meteomaingournois.dyndns.org already exists. Do you
want to update its key type to ECDSA?
(U)pdate key type/(K)eep existing key type: U
Simulating renewal of an existing certificate for meteomaingournois.dyndns.org
Performing the following challenges:
http-01 challenge for meteomaingournois.dyndns.org
Create a file containing just this data:
JpbtJqV3kMGvX4mOsXAWpgM6LkxwVDmRKopqngukYTE.HJoMTHfT3thyKrz2wzIjhgo3KT6Qrb3ur3IL1dHlT2c
And make it available on your web server at this URL:
Press Enter to Continue
Waiting for verification...
Challenge failed for domain meteomaingournois.dyndns.org
http-01 challenge for meteomaingournois.dyndns.org
Certbot failed to authenticate some domains (authenticator: manual). The Certificate Authority reported these problems:
Domain: meteomaingournois.dyndns.org
Type: unauthorized
Detail: 82.66.9.83: Invalid response from https://meteomaingournois.dyndns.org/.well-known/acme-challenge/JpbtJqV3kMGvX4mOsXAWpgM6LkxwVDmRKopqngukYTE: 404
Hint: The Certificate Authority failed to verify the manually created challenge files. Ensure that you created these in the correct location.
Cleaning up challenges
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):
Apache 2.4.62
The operating system my web server runs on is (include version):
MAC OS X 15.3 (Sequoia)
My hosting provider, if applicable, is: NA
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 3.2.0
My configuration vhost
<VirtualHost *:80>
ServerAdmin meteo.maingournois@gmail.com
ServerName meteomaingournois.dyndns.org
ServerAlias *meteomaingournois.dyndns.org
DocumentRoot "/Cerbot"
Alias /.well-known/acme-challenge/ /etc/letsencrypt/.well-known/acme-challenge/
<Directory "/etc/letsencrypt/.well-known/acme-challenge/">
Options None
AllowOverride None
ForceType text/plain
RedirectMatch 404 "^(?!/\.well-known/acme-challenge/[\w-]{43}$)"
</Directory>
ErrorLog "/Cerbot/logs/error_cerbot.log"
CustomLog "/Cerbot/logs/access_cerbot.log" combined
RewriteEngine on
RewriteCond %{SERVER_NAME} =*meteomaingournois.dyndns.org [OR]
RewriteCond %{SERVER_NAME} =meteomaingournois.dyndns.org
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
sudo apachectl -t -D DUMP_VHOSTS
VirtualHost configuration:
*:80 meteomaingournois.dyndns.org (/private/etc/apache2/extra/httpd-vhosts.conf:29)
*:443 meteomaingournois.dyndns.org (/private/etc/apache2/extra/httpd-ssl.conf:125)
And finally, when i put a file foo.txt or foo in the folder .well-known/acme-challenge/, i can view the contain file with the adress
https://meteomaingournois.dyndns.org/.well-known/acme-challenge/foo.txt or
https://meteomaingournois.dyndns.org/.well-known/acme-challenge/foo
Thank you by advance for your help