발급 경로로 이동
# cd /etc/letsencrypt/live/your_domain/
/etc/letsencrypt/live/your_domain# ls
cert.pem: 해당 도메인의 인증서
chain.pem: Let's Encrypt의 연결 인증서
fullchain.pem: 도메인 인증서와 LE 연결 인증서를 합친 것
privkey.pem: 인증서의 키 파일
pem --> key
# openssl rsa -in privkey.pem -text > your_domain.key
pem -> crt
# openssl x509 -inform PEM -in fullchain.pem -out your_domain.crt