Skip to content

Instantly share code, notes, and snippets.

@alenabdula
Created December 20, 2015 20:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alenabdula/852203f887967b43d3e5 to your computer and use it in GitHub Desktop.
Save alenabdula/852203f887967b43d3e5 to your computer and use it in GitHub Desktop.
Let's Encrypt Install Process
# Let's Encrypt
# Install Process
cd ~
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt
sudo ./letsencrypt-auto certonly --standalone --agree-tos --redirect --duplicate --text --email EMAIL@EXAMPLE.COM -d EXAMPLE.COM -d WWW.EXAMPLE.COM
# Nginx Configuration
# https://github.com/h5bp/server-configs-nginx/blob/master/h5bp/directive-only/ssl.conf
# Path to Certificates
# /etc/letsencrypt/live/EXAMPLE.COM/privkey.pem
# /etc/letsencrypt/live/EXAMPLE.COM/fullchain.pem
#
# Remember to replace EXAMPLE.COM, WWW.EXAMPLE.COM and EMAIL@EXAMPLE.COM
#
# Happy SSL'n, just remember to renew certificate after 90 days. Cron Job!!!!!!
# http://letsencrypt.readthedocs.org/en/latest/using.html#renewal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment