hoony's web study

728x90
반응형

Ubuntu 22.04 버전에 Certbot 인스톨 하는 방법

Certbot 는 Snap package를 이용해서 인스톨하는 것을 권장합니다. 

sudo snap install core; sudo snap refresh core


기존에 certbot가 인스톨 되어있다면 삭제를 해주세요. 

sudo apt remove certbot

Certbot 를 snap을 이용해서 인스톨 해주세요.

sudo snap install --classic certbot

certbot를 위해서 링크를 만들어 주시면 됩니다. 

sudo ln -s /snap/bin/certbot /usr/bin/certbot


SSL 인증서 발급하는 방법

sudo certbot --nginx -d example.com -d www.example.com

위에처럼 명령어를 실행하시면 nginx configur 에 자동으로 들어갑니다. 

버전이 바뀔때마다 배워고 외워야할 것들이 많다는 생각이 드네요. 
참고 사이트는 아래와 같습니다. 

https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-22-04

 

How To Secure Nginx with Let's Encrypt on Ubuntu 22.04 | DigitalOcean

 

www.digitalocean.com

728x90

'개발관련 > 서버기술관련' 카테고리의 다른 글

[Let's Encrypt] SSL Certificate 삭제 방법  (0) 2022.08.09
[NGINX] authorization 설정하기  (0) 2022.08.08
Ubuntu 버전 확인하기  (0) 2022.08.08
[Nginx] CORS해결방법  (0) 2022.08.05
[AWS EC] JDK 설치 하기  (0) 2022.06.28

공유하기

facebook twitter kakaoTalk kakaostory naver band
loading