blob: 927f484059798a51214c2a46695caf03819ecf15 (
plain)
1
2
3
4
5
6
7
8
9
|
# Setup TLS with certbot and Let's Encrypt
# https://certbot.eff.org/
sudo snap install core; sudo snap refresh core
sudo snap install --classic certbot
sudo ln -s /snap/bin/certbot /usr/bin/certbot
sudo certbot --nginx
sudo certbot renew --dry-run
|