IT 스토리

[실전 가이드] Certbot으로 Nginx SSL 인증서 자동 갱신 설정하기

1분 분량

Nginx SSL 인증서 자동 갱신 설정하기

개요

Let's Encrypt의 Certbot을 사용하여 Nginx 웹서버의 SSL 인증서를 무료로 발급받고 자동으로 갱신하는 방법을 알아봅니다.

Certbot 설치

sudo apt install certbot python3-certbot-nginx -y

SSL 인증서 발급

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

자동 갱신 설정

Certbot은 자동으로 갱신 타이머를 설정합니다:

sudo systemctl status certbot.timer

테스트

sudo certbot renew --dry-run

결론

이제 SSL 인증서가 자동으로 갱신됩니다!