80 포트 오픈 여부 확인
sudo iptables -t nat -L --line-numbers
sudo iptables -t nat -D PREROUTING 1
웹서버(nginx) 멈추기
sudo systemctl stop nginx.service
인증서 갱신
sudo cerbot renew
와일드 카드 도메인 있는 경우 : sudo certbot certonly -a manual -i nginx -d 도메인
예시) sudo certbot certonly -a manual -i nginx -d *.icanidevelop.com
DNS TXT 적용 및 확인
https://toolbox.googleapps.com/apps/dig/#TXT/
80 포트 리다이렉트
sudo iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 5000
sudo iptables -t nat -L --line-numbers
웹서버(nginx) 시작
sudo systemctl start nginx.service
참고
https://xrabcde.github.io/renew-ssl-certificate/
https://ko.linux-console.net/?p=3963#gsc.tab=0
https://darkstart.tistory.com/109
https://blog.lunapiece.net/posts/Wildcard-SSL-With-Certbot-Renew/