Difference between revisions of "Letsencrypt"
From SME Server
Jump to navigationJump to searchLine 12: | Line 12: | ||
followed instructions at http://wiki.contribs.org/Software_Collections and the python related wiki page specifically. | followed instructions at http://wiki.contribs.org/Software_Collections and the python related wiki page specifically. | ||
− | add the 2.7 by following : http://wiki.contribs.org/Scl#tab=Python27 | + | add the 2.7 scl-repository by following : http://wiki.contribs.org/Scl#tab=Python27 |
Then : yum install python27 --enablerepo=scl-python27 | Then : yum install python27 --enablerepo=scl-python27 | ||
Line 19: | Line 19: | ||
To use Let's Encrypt run: | To use Let's Encrypt run: | ||
− | |||
<pre> | <pre> | ||
mkdir src | mkdir src |
Revision as of 17:30, 6 December 2015
Introduction
Let’s Encrypt is a new Certificate Authority: It’s free, automated, and open.
Installation
followed instructions at http://wiki.contribs.org/Software_Collections and the python related wiki page specifically.
add the 2.7 scl-repository by following : http://wiki.contribs.org/Scl#tab=Python27
Then : yum install python27 --enablerepo=scl-python27
at this time : scl enable python27 bash
To use Let's Encrypt run:
mkdir src cd src git clone https://github.com/letsencrypt/letsencrypt.git cd letsencrypt service httpd-e-smith stop ./letsencrypt-auto certonly --standalone --email me@mydomain.co.uk -d test.firstdomain.co.uk -d seconddomain.co.uk -d www.seconddomain.co.uk
Replacing email and domains as required. Then configure SME with the certificates generated:
config setprop modSSL crt /etc/letsencrypt/live/test.firstdomain.co.uk/fullchain.pem config setprop modSSL key /etc/letsencrypt/live/test.firstdomain.co.uk/privkey.pem config setprop modSSL CertificateChainFile /etc/letsencrypt/live/test.firstdomain.co.uk/fullchain.pem signal-event post-upgrade; signal-event reboot
Source from info
Source: http://forums.contribs.org/index.php/topic,51961.msg266680.html#msg266680