Created
April 27, 2016 15:06
-
-
Save karlgray/781631e8b2f0d738858bf19c67568e5e to your computer and use it in GitHub Desktop.
Install letsencrypt on Centos 6.7
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
#!/bin/bash | |
yum -y install https://rhel6.iuscommunity.org/ius-release.rpm | |
yum --enablerepo=ius install git python27 python27-devel python27-pip python27-setuptools python27-virtualenv -y | |
yum install git | |
cd /root/ | |
git clone https://github.com/letsencrypt/letsencrypt | |
cd letsencrypt/ | |
./letsencrypt-auto certonly -d secure.domain.co.uk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment