Estoy moviendo mi sitio web a un nuevo servidor (debian9+apache).
Instalé un certificado certbot para mi dominio a través del comando:
sudo certbot certonly -d www.theartstory.org --manual --preferred-challenges dnsHe usado este comando en lugar de:
sudo certbot --apacheporque en esa fecha los registros DNS estaban configurados con direcciones IP antiguas.
Ahora necesito agregar una versión no www a este certificado. He encontrado un comando para hacer esto:
sudo certbot certonly --cert-name www.theartstory.org -d www.theartstory.org,theartstory.orgpero falla con error:
Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA. You may need to use an authenticator plugin that can do challenges over DNS.¿Cómo puedo solucionar este problema?