CentOS에 ssl 인증서를 적용하고 nginx에 해당 인증서를 적용하여 https를 설정하는 방법이다. Certbot 설치 yum install certbot -y 인증서 적용 standalone 옵션으로 certbot 을 실행하면 오류가 발생하므로 nginx를 정지시킨다. systemctl stop nginx example.com 을 도메인으로 하여 인증서를 생성하는 코드이다. 해당 코드를 실행하면 "/etc/letsencrypt/live/example.com/"에 인증서 관련 파일들이 생성된다. certbot certonly --standalone -d example.com nginx 설정을 다음과 같이 변경하여 nginx 에 인증서를 적용한다. ssl 인증서를 적용하여 https 를 사용하므로 ..