꽃지닷컴's 블로그
oracle cloud 무료티어 Let's Encrypt 설치 본문
반응형
Let's Encrypt 버전이 업데이트 되면서 기존 방식과 설치 방법이 조금 달라진듯 하다.
우선 snap을 설치하여야 한다.
sudo snap install certbot --classic
80 포트를 사용중지 해야 certbot 를 설치가 용이하게 진행된다.
nginx를 중지 후 진행한다.
sudo nginx -s stop
그 다음 인증을 진행한다.
sudo certbot certonly --standalone --preferred-challenges http --agree-tos --email you@example.com -d doh.example.com
Successfully received certificate.
Certificate is saved at: /etc/letsencrypt/live/도메인/fullchain.pem
Key is saved at: /etc/letsencrypt/live/도메인/privkey.pem
참고
https://velog.io/@handwoong/Code-server-%EC%84%A4%EC%B9%98%EB%B0%A9%EB%B2%95
반응형
'IT > Web' 카테고리의 다른 글
[Nginx] 502 Bad Gateway 에러 (0) | 2020.11.12 |
---|
Comments