Ubuntu 14.04 From https://certbot.eff.org/all-instructions/#ubuntu-14-04-trusty-nginx Download and install We’re going to use certbot and install it in /usr/local/bin sudo wget https://dl.eff.org/certbot-auto -O /usr/local/bin/certbot-auto sudo chmod +x /usr/local/bin/certbot-auto certbot-auto –os-packages-only First cert request sudo service nginx stop ./certbot-auto certonly –standalone -d www.example.com -d example.com sudo service nginx start Test renewal certbot-auto renew –dry-run Actual renewal…
Tag: let’s encrypt
Uncategorized
Read more
Let’s Encrypt certificate log
You can browse all 46+ million certificates ever issued by Let’s Encrypt here: https://crt.sh/?Identity=%25&iCAID=16418 The %25 in the identity URL parameter is the percent sign and used in a LIKE query so you can do things like this to find specific certs: https://crt.sh/?Identity=microsoft.com%25&iCAID=16418 I don’t have a specific use for…