Hello everyone!
I ran sudo certbot --apache and have this
Requesting a certificate for the1one1.ru
Certbot failed to authenticate some domains (authenticator: apache). The Certifi cate Authority reported these problems:
Domain: the1one1.ru
Type: unauthorized
Detail: 5.180.172.207: Invalid response from http://the1one1.ru/.well-known/ac me-challenge/dq-RRZuurxVWhTKjdt3HFdtqkAQEZ5o3LaiN4Hfakcw: 404
Hint: The Certificate Authority failed to verify the temporary Apache configurat ion changes made by Certbot. Ensure that the listed domains point to this Apache 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 t he logfile /var/log/letsencrypt/letsencrypt.log or re-run Certbot with -v for mo re details.
my virtualhost:
<VirtualHost *:80>
ServerName the1one1.ru
ServerAlias the1one1.ru
ServerAdmin xxxx@xxxx.com
DocumentRoot /var/www/empty
Alias /.well-known/acme-challenge/ /var/www/empty/.well-known/acme-challenge/
<Directory "/var/www/empty/.well-known/acme-challenge/">
Options None
AllowOverride None
ForceType text/plain
RedirectMatch 404 "^(?!/\.well-known/acme-challenge/[\w-]{43}$)"
</Directory>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/\.well-known
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [R]
CustomLog ${APACHE_LOG_DIR}/chat.access.log combined
ErrorLog ${APACHE_LOG_DIR}/chat.error.log
What should i do to fix it?