A Free, Automated and Open Certificate Authority
Arief Karfianto
Report on Emerging E-Business Technologies
Introduction
Let's Encrypt Design
Let's Encrypt Implementation
Conclusion
The biggest obstacle to Hypertext Transport Protocol Secure (HTTPS) deployment :
In 2015, Electronic Frontier Foundation released Let’s Encrypt.
Let’s Encrypt aims to automatically configure an HTTPS server with trusted certificate.
This is done by executing an open source certificate management agent on each of the web application servers.
// update the ubuntu repository
$ sudo apt-get update
// install git scm
$ sudo apt-get install git
// clone the agent from github
$ sudo git clone https://github.com/certbot/certbot /opt/letsencrypt
// create certificate for example.com and www.example.com
$ cd /opt/letsencrypt
$ ./letsencrypt-auto --apache -d example.com -d www.example.com
// check the validity and renew the certificate
$ ./letsencrypt-auto renew
// put auto renewal script to cron
$ sudo crontab –e
$ 30 2 * * 1 /opt/letsencrypt/letsencrypt-auto renew
“the growth of HTTPS has increased four-fold since Let's Encrypt was launched.”
-- Mozilla
Source: https://blogs.akamai.com/2016/04/how-has-lets-encrypt-impacted-web-security.html
Aas, J 2016, Our Millionth Certificate, Let's Encrypt - Free SSL/TLS Certificates, weblog post, 8 March 2016, viewed 1 April 2016, <https://letsencrypt.org/2016/03/08/ourmillionth-cert.html>.
Eckersley, P 2014, Launching in 2015: A Certificate Authority to Encrypt the Entire Web,
Electronic Frontier Foundation, weblog post, 18 November 2014, viewed 1 April 2016, <https://www.eff.org/deeplinks/2014/11/certificate-authority-encrypt-entireweb>.
Getting Started - Let's Encrypt - Free SSL/TLS Certificates 2016 Internet Security Research Group, viewed 1 April 2016, <https://letsencrypt.org/getting-started/>.
How It Works - Let's Encrypt - Free SSL/TLS Certificates 2016, Internet Security Research Group, viewed 1 April 2016, <https://letsencrypt.org/how-it-works/ >.
Papazoglou, M & Ribbers, P 2006, E-business: organizational and technical foundations, Chichester, England, John Wiley.