Answers for "install certbot in ubuntu 18.04 nginx"

3

nginx certbot ubuntu

// Ubuntu 20.04
sudo apt install certbot python3-certbot-nginx

// Ubuntu 18.04
sudo add-apt-repository ppa:certbot/certbot
sudo apt install python-certbot-nginx

// Configure ufw
sudo ufw allow 'Nginx Full'
sudo ufw delete allow 'Nginx HTTP'
sudo ufw delete allow 'Nginx HTTPS'

sudo certbot --nginx -d example.com
Posted by: Guest on December-28-2020
5

ubuntu certbot nginx

sudo add-apt-repository ppa:certbot/certbot
sudo apt install python-certbot-nginx
sudo certbot --nginx -d example.com -d www.example.com
Posted by: Guest on December-25-2020

Code answers related to "install certbot in ubuntu 18.04 nginx"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language