Skip to content

Let’s Encrypt

Let’s Encrypt with CPanel

A lot of web hosts have Let’s Encrypt built into the CPanel. Not mine. I was kinda annoyed. I tweeted at them to ask if they’d support it. They wouldn’t. So I decided I would make it work myself. To do this is pertty simple. I’m just going to start by copying and pasting text from a previous article. Open up your Terminal.app (Go to the Go menu, choose Utilities, double-click on Terminal). This isn’t even a step, you should know this. Step One – Install Homebrew /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)” At this point, you will be prompted to press RETURN to continue. Press the return key. It will… Read More »Let’s Encrypt with CPanel

Renewing Let’s Encrypt on a macOS machine running 10.12.6 and Server.app

Last time on Never Had To Fight… Adam installed a certificate using Let’s Encrypt for a macOS server running 10.12.6 and Server.app. It wasn’t exciting, but it worked. Now, three months later, we need to renew. It was actually really easy. Renew the certificates sudo certbot renew Transfer the .pem files to desktop Using the cp command enter these to copy your files. Replace <<FQDN>> with your FQDN. Replace <<USER>> with your username. sudo cp /etc/letsencrypt/live/<<FQDN>>/privkey.pem /Users/<<USER>>/Desktop/privkey.pem sudo cp /etc/letsencrypt/live/<<FQDN>>/fullchain.pem /Users/<<USER>>/Desktop/fullchain.pem Hooray, now these files are on your desktop. Install Certs Open Server.app Go to Certificates. Click on the + Choose Import Certificate Identity… Drag and drop the two .pem… Read More »Renewing Let’s Encrypt on a macOS machine running 10.12.6 and Server.app

Let’s Encrypt on a macOS machine running 10.12.6 and Server.app

Are you doing your web hosting with Server.app? You’re probably not the biggest fan of it, but it works, so… let’s keep on keeping on. Do you want to have a free SSL certificate from Let’s Encrypt? Well, I found some really bad guides, so this is much better. *Hat tip to MacAdmins slack for a few key points Open up your Terminal.app (Go to the Go menu, choose Utilities, double-click on Terminal). This isn’t even a step, you should know this. Step One – Install Homebrew /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)” At this point, you will be prompted to press RETURN to continue. Press the return key. It will… Read More »Let’s Encrypt on a macOS machine running 10.12.6 and Server.app