평소처럼 도메인을 추가하기 위해 sudo certbot --nginx를 입력했는데 에러가 발생했다.

Obtaining a new certificate
Performing the following challenges:
Client withith the currently selected authenticator does not support any combination of challenges that will satisfy the CA.
Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA.

이게 갑자기 떠서 놀랬다.

아래와 같은 메서드로 해결.

apache

sudo certbot --authenticator standalone --installer apache -d example.com -d www.example.com \
--pre-hook "systemctl stop apache2" --post-hook "systemctl start apache2"

nginx

sudo certbot --authenticator standalone --installer nginx -d example.com -d www.example.com \
--pre-hook "systemctl stop nginx" --post-hook "systemctl start nginx"

결론

자신의 도메인이 아니더라도 발급해주는 부분을 해결하기 위해 해둔 조치 등으로 생긴 문제 같은데 (영알못;) 우선 이런식으로 해결 할 수 있다.