Let’s Encrypt easily

fobidlim
2 min readJun 20, 2018

--

Google은 2018년 7월부터 Chrome browser에서 모든 HTTP 사이트에 대해 ‘Not Secure(안전하지 않음)’ 경고를 표시한다고 발표했습니다.

개인 홈페이지나 포트폴리오와 같은 사이트에 SSL 인증서를 구매해서 사용하기에는 큰 부담이 될 수도 있습니다.

그래서 Let’s Encrypt 를 사용하여 SSL 을 무료로 간편하게 설치하려고 합니다.

$ git clone https://github.com/letsencrypt/letsencrypt$ cd letsencrypt$ ./letsencrypt-auto --help$ ./letsencrypt-auto --apache

nginx를 사용한다면 apache 대신 nginx 옵션을 주면 됩니다.

$ ./letsencrypt-auto --nginx

끝!

--

--