Title here
Summary here
Wenn Ihr unter Ubuntu auf Apache versucht mit sudo certbot -d <DOMAIN>
ein Zertifikat für eine Domain registrieren, könnt ihr in folgende Meldung rennen.
“Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA”
Lösung
Nutzt folgenden Befehl um das Zertifikat anzufordern.
certbot --authenticator standalone --installer apache -d <DOMAIN> --pre-hook "systemctl stop apache2" --post-hook "systemctl start apache2"
Cheers, Ori