Lego – LetsEncrypt client

Lego is a Let’s Encrypt client and ACME library written in Go. https://go-acme.github.io/lego Install Lego To install go to the release page, download the latest version. Create SSL certificate To create an SSL certificate standalone (built-in webserver), run If you need to verify using port 443, use “–tls” instead of “–http” Verify SSL using webroot … Read more

Install LetsEncrypt in CentOS 7

certbot deprecated support for CentOS 7, so new version of certbot-auto script won’t work on CentOS 7. To install certbot (letsencrypt command line tool), run yum install -y epel-release yum install -y python2-certbot.noarch To run it, use command /usr/bin/certbot-2 See LetsEncrypt

Install LetsEncrypt SSL on Bitnami

NOTE: bitnami provides a tool to install SSL, it is better to use the tool to install SSL. You can see more info on page How to install LetsEncrypt SSL on Bitnami WordPress Server To install LetsEncrypt SSL on bitnami wordpress server, install letsencrypt with wget https://raw.githubusercontent.com/serverok/server-setup/master/install/letsencrypt.sh sh ./letsencrypt.sh Stop apache web server with /opt/bitnami/ctlscript.sh … Read more

Nginx Proxy SSL Verification

When using Nginx as a reverse proxy, you may need to handle SSL verification requests. Passing this request to the backend server may not do any good as back-end servers usually only handle application requests. To handle SSL validation requests, use the following Nginx Configuration Now restart Nginx You can get SSL with the following … Read more

certbot certificates

To list all letsencrypt SSL certificates, run certbot certificates Example root@ok:~# certbot certificates Saving debug log to /var/log/letsencrypt/letsencrypt.log Revocation status for /etc/letsencrypt/live/boby.hosthat.com/cert.pem is unknown ——————————————————————————- Found the following certs: Certificate Name: boby.hosthat.com Domains: boby.hosthat.com Expiry Date: 2017-06-11 15:10:00+00:00 (INVALID: EXPIRED) Certificate Path: /etc/letsencrypt/live/boby.hosthat.com/fullchain.pem Private Key Path: /etc/letsencrypt/live/boby.hosthat.com/privkey.pem Certificate Name: img.serverok.in Domains: img.serverok.in Expiry Date: 2018-05-02 … Read more

Enable LetsEncrypt SSL in ISPConfig

Login to ISPConfig at https://your-server-ip:8080 On main menu, click on “Sites”. It will show all available web sites on your server. Click on the domain on which you need LetsEncrypt SSL installed. On Next page, click the check boxes “SSL” and “LetsEncrypt”. Click “Save” button. In few minutes you will get SSL installed on your … Read more