본문 바로가기
WebApp

[HTTPS] certbot 사용법 : chain 삭제

by ds31x 2023. 9. 10.

Letsencrypt 에서의 Chain이란

  • 동일한 certification 을 사용하는 domains를 설정하는 단위.
  • /etc/letsencrypt/live 에 Chain명의 directory가 존재함.
  • 해당 directory 밑에 관련 certification, key등이 존재.

Chain 삭제가 필요한 경우

Domain을 사용하지 않게 되거나 특정 domain을 다른 서버로 이전시키는 등의 일이 발생하는 경우, 해당 Chain을 삭제해야함.

단, nginx 등에서 사용하지 않는 것을 반드시 체크하고 지워야 함.


Chain 삭제 명령어

certbot delete --cert-name <chain_name>

삭제 대상들의 위치.

  • /etc/letsencrypt/live/<chain_name>
  • /etc/letsencrypt/archive/<chain_name>
  • /etc/letsencrypt/renewal/<chain_name>
728x90

'WebApp' 카테고리의 다른 글

[HTTPS] certbot을 통한 nginx에서 HTTPS 설정.  (0) 2023.09.10
[HTTPS] Certification 갱신 : certbot renew  (0) 2023.09.10
[Nginx] 설치 및 설정 추가.  (0) 2023.09.08
[WebApp] NginX 설정 관련 .  (0) 2023.08.01
[WebApp] CGI vs. WSGI  (0) 2023.07.31