how to install certbot ubuntu 20.04
First Once you have completed the setup of Apache 2, then you need to install Certbot.
In Ubuntu, Snapd is already installed. So you don’t need to do anything here. But for other OS, you need to first install SNAPD.
Then run the following command to install “core”
sudo apt install snapd
sudo snap install core
Next, install the certbot using the following command.
sudo snap install --classic certbot
Once you have installed the certbot then it’s time to issue the SSL certificate by running the following command.
sudo certbot --apache
This will issue an SSL certificate for you using Letsencrypt and will make the necessary changes in the “.conf” file.
how to install certbot ubuntu 20.04