在ubuntu使用certbot現在非常簡單直接用apt install即可
1 | apt update |
可以使用cron設定自動檢查更新證書在_etc_crontab中加入以下內容並重啟cron服務
1 | 00 1 * * 1 root certbot renew |
使用cerbot在nginx下新增域名證書
1 | certbot certonly --webroot --webroot-path=/usr/share/nginx/html -d 域名 |
Letsencrypt第一次設定後,如果後續還需要更改通知信箱可以使用以下指令
1 | certbot update_account --email yourname@example.com |