Horje
ubuntu certbot nginx Code Example
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
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
nginx letsencrypt
sudo certbot renew
sudo service nginx restart




Shell

Related
how to install git on ubuntu 20.04 Code Example how to install git on ubuntu 20.04 Code Example
install workbench on ubuntu Code Example install workbench on ubuntu Code Example
how to run flutter on google chrome Code Example how to run flutter on google chrome Code Example
.gitignore file not ignoring the file Code Example .gitignore file not ignoring the file Code Example
Failed to restart mongodb.service: Unit mongodb.service is masked. Code Example Failed to restart mongodb.service: Unit mongodb.service is masked. Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11