Created
December 20, 2015 20:38
-
-
Save alenabdula/852203f887967b43d3e5 to your computer and use it in GitHub Desktop.
Let's Encrypt Install Process
This file contains 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
# 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 protected] -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 protected] | |
# | |
# 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