Install and Enable Certbot letsencrypt SSL/TLS Certificate in NGINX Ubuntu 22.04 LTS without using snapd
Step 1: Update the Package List
sudo apt update
Step 2: Install Certbot
sudo add-apt-repository universe
Then, install Certbot using apt:
sudo apt install certbot
Step 3: Install the Plugin for NGINX
sudo apt install python3-certbot-nginx
Step 4: Get the certificate for the preferred domain
sudo certbot certonly --standalone -d your_domain
Comments
Post a Comment