Install and Enable Certbot letsencrypt SSL/TLS Certificate in NGINX Ubuntu 22.04 LTS without using snapd

Install and Enable Certbot letsencrypt SSL/TLS Certificate in NGINX Ubuntu 22.04 LTS

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

Popular posts from this blog

MongoDB Installation Ubuntu 22.04 LTS