LetsEncrypt(2)
-
Letsencrypt SSL 인증서 삭제
crispypotato.tistory.com/53?category=964498 에서 SSL인증서를 만들었다 하지만 도메인이 변경되면 SSL인증서가 적용되지않아서 변경해야하는데 그때 삭제하고 다시 만들려고 한다. SSL인증서로 NGINX에서 HTTPS 설정하기 환경 Ubuntu 16.04 (LTS) 이상의 환경에서 구성함 도메인 test.com 이 있다고 가정 1. 저장소 설정과 업데이트를 진행 $ sudo apt-get update $ sudo apt-get install software-properties-common $ sudo add-apt-.. crispypotato.tistory.com 글에서는 인증서를 발급한 계정에서 삭제하는거라서 해당 도메인을 넣고 certbot revoke --cert-p..
2020.11.11 -
SSL인증서로 NGINX에서 HTTPS 설정하기
환경 Ubuntu 16.04 (LTS) 이상의 환경에서 구성함 도메인 test.com 이 있다고 가정 1. 저장소 설정과 업데이트를 진행 $ sudo apt-get update $ sudo apt-get install software-properties-common $ sudo add-apt-repository universe $ sudo add-apt-repository ppa:certbot/certbot $ sudo apt-get update 2. Certbot설치 $ sudo apt-get install certbot python3-certbot-nginx 3. nginx 세팅 Certbot이 알아서 SSL를 세팅해주기 때문에 vi /etc/nginx/sites-available/ (사용 할 ser..
2020.10.22