Last active
April 3, 2016 14:18
-
-
Save blockloop/888dd9d0c629969c1c05f8952b37dd0a to your computer and use it in GitHub Desktop.
Automatically update letsencrypt certificates with crontab/cronjob
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 3 1 * * /var/www/_utils/update_certs.sh > /dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# nginx config for default site | |
# i.e. /etc/nginx/sites-enabled/default | |
server { | |
server_name *.blockloop.io; | |
listen 443 ssl spdy; | |
spdy_headers_comp 6; | |
spdy_keepalive_timeout 300; | |
keepalive_timeout 300; | |
ssl_certificate /etc/letsencrypt/live/www.blockloop.io/fullchain.pem; | |
ssl_certificate_key /etc/letsencrypt/live/www.blockloop.io/privkey.pem; | |
ssl_ciphers AES256+EECDH:AES256+EDH:!aNULL; | |
ssl_prefer_server_ciphers on; | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
ssl_session_cache shared:SSL:10m; | |
ssl_session_timeout 24h; | |
ssl_stapling on; | |
ssl_stapling_verify on; | |
rewrite ^ https://www.blockloop.io$request_uri? permanent; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cd /opt/letsencrypt | |
service nginx stop && \ | |
./letsencrypt-auto certonly --agree-tos --renew-by-default -d blockloop.io -d blog.blockloop.io -d www.blockloop.io; \ | |
service nginx start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment