Last active
July 5, 2016 13:34
-
-
Save brianberlin/56277c0b65c041167bee4a9946781f32 to your computer and use it in GitHub Desktop.
Lets Encrypt
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
// Make sure pip is installed -> https://pip.pypa.io/en/stable/installing/ | |
sudo yum install python27-devel python27-virtualenv gcc | |
sudo rm /usr/bin/python | |
sudo ln -s /usr/bin/python27 /usr/bin/python | |
wget https://bootstrap.pypa.io/get-pip.py | |
sudo python get-pip.py | |
sudo pip install virtualenv --upgrade | |
sudo git clone https://github.com/letsencrypt/letsencrypt /opt/letsencrypt | |
sudo /opt/letsencrypt/letsencrypt-auto certonly --standalone --debug |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment