Skip to content

Instantly share code, notes, and snippets.

@karlgray
Created April 27, 2016 15:06
Show Gist options
  • Save karlgray/781631e8b2f0d738858bf19c67568e5e to your computer and use it in GitHub Desktop.
Save karlgray/781631e8b2f0d738858bf19c67568e5e to your computer and use it in GitHub Desktop.
Install letsencrypt on Centos 6.7
#!/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