I have created some certificated using certbot's --standalone option but I want to renew them so I run (testing if will get renewed):
sudo certbot renew --dry-run
But for some domains I get the error
Attempting to renew cert from /etc/letsencrypt/renewal/example.org.conf produced an unexpected error: Missing command line flag or config entry for this setting:
Select the webroot for example.org:
Choices: ['Enter a new webroot', '/var/www/ellakcy/']
(You can set this with the --webroot-path flag). Skipping.
So I want when I run sudo certbot renew
to be able to autorenew my certificates without the need to provide a webroot path.
How I can do that?