Answers for "certbot"

4

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
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
Posted by: Guest on December-28-2020
1

certbot configure

certbot certonly --webroot -w /var/www/html -d www.theflock.de -d theflock.de
Posted by: Guest on October-07-2020
0

certbot

sudo snap install --classic certbot
Posted by: Guest on October-27-2020
0

how to get free ssl certificate from letsencrypt for local

openssl req -x509 -out localhost.crt -keyout localhost.key \
  -newkey rsa:2048 -nodes -sha256 \
  -subj '/CN=localhost' -extensions EXT -config <( \
   printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
Posted by: Guest on December-17-2020
0

certbot command

certbot certonly --webroot -w /var/www/example -d www.example.com -d example.com -w /var/www/other -d other.example.net -d another.other.example.net
Posted by: Guest on March-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language