Lets Encrypt nginx SSL certificate renewal via cron
Add below as a cron entry. 1 2 3 #!/bin/bash /path/letsencrypt/letsencrypt-auto --server https://acme-v01.api.letsencrypt.org/directory --renew-by-default -a webroot --webroot-path /webroot/ --email youremail --text --agree-tos --agree-dev-preview -d 7979.us -d www.7979.us auth /etc/init.d/nginx reload Then configure nginx SSL like below. ...