certbot nginx config manual code example
Example 1: 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
Example 2: certbot configure
certbot certonly --webroot -w /var/www/html -d www.theflock.de -d theflock.de