Certbot auf Apache

February 27, 2018 in linux ‐ 1 min read

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