Changes

Jump to navigation Jump to search
545 bytes added ,  18:36, 6 December 2015
no edit summary
Line 7: Line 7:  
Let’s Encrypt is a new Certificate Authority:  
 
Let’s Encrypt is a new Certificate Authority:  
 
It’s free, automated, and open.
 
It’s free, automated, and open.
 +
It's main purpose is to allow people to encrypt the internet traffic by a very simple system.
 +
 +
The certs delivred must be renew every 3 months.
    
== Installation ==
 
== Installation ==
Line 40: Line 43:  
Source: http://forums.contribs.org/index.php/topic,51961.msg266680.html#msg266680
 
Source: http://forums.contribs.org/index.php/topic,51961.msg266680.html#msg266680
    +
== Renew of the certs ==
 +
 +
A simple bash to renew cert :
 +
 +
<pre>
 +
#!/bin/bash
 +
source /opt/rh/python27/enable
 +
export X_SCLS="`scl enable python27 'echo $X_SCLS'`"
 +
service httpd-e-smith stop
 +
cd /src/letsencrypt
 +
./letsencrypt-auto certonly --standalone --email me@mydomain.co.uk -d test.firstdomain.co.uk -d seconddomain.co.uk -d www.seconddomain.co.uk --renew-by-default
 +
service httpd-e-smith start
 +
</pre>
 
----
 
----
 
[[Category:Howto]]
 
[[Category:Howto]]
46

edits

Navigation menu