Setting Up Local HTTPS with mkcert on macOS
When developing web applications locally, HTTPS is often overlooked. Yet, modern browsers and APIs increasingly require secure connections—even in development. That’s where mkcert comes in: a simple t

Search for a command to run...
Articles tagged with #ssl
When developing web applications locally, HTTPS is often overlooked. Yet, modern browsers and APIs increasingly require secure connections—even in development. That’s where mkcert comes in: a simple t

In this article, I'll walk you through the steps to generate a self-signed SSL certificate for localhost on a Linux system. We'll use mkcert, a simple tool for making locally trusted development certificates. Also just to highlight it, I’m using arm ...

SSL is important thing for the security for your web application, some of the SSL are paid features, but we can have free SSL provided by Let’s Encrypt. In this article, we're going to try to configure SSL on ubuntu + apache2 server. 1. Install Requi...

add repository to system. sudo add-apt-repository ppa:certbot/certbot updating apt. sudo apt update installing certbot sudo apt-get install python-certbot-apache // or sudo apt-get install python-certbot-nginx installing SSL by certbot sudo...