Search
Close this search box.

Setting Up Certbot for SSL Certificates

Info

I spent some time getting Certbot set up for my web hosting project, Bork.host. Certbot allows me to easily generate SSL certificates for my test domains and projects. Now, I can secure all my sites with proper HTTPS encryption and ensure everything runs smoothly, especially for external testing environments. This setup has been a game changer for managing SSL certs across multiple projects.

Steps

Install

$ sudo apt-get install software-properties-common
$ sudo add-apt-repository ppa:certbot/certbot
$ sudo apt-get update
$ sudo apt-get install python-certbot-nginx

Run

$ sudo certbot --nginx
Share this Post:
Scroll to Top