Notes on SSL Everywhere

Here’s how I’m adding SSL to my wordpress sites for free: https://letsencrypt.org/getting-started/ On Linux hosts, here: https://certbot.eff.org/#ubuntutrusty-nginx Specifically: $ sudo add-apt-repository ppa:certbot/certbot $ sudo apt-get update $ sudo apt-get install certbot And then: certbot certonly –webroot -w /var/www/noelhunter.com -d noelhunter.com -w /var/www/noelhunter.com -d www.noelhunter.com or apache: certbot –apache And to renew: certbot renew –dry-run For […]