|
|
|
|
|
by carussell
3408 days ago
|
|
Let's Encrypt can still be pretty convoluted and is not headache-free, even using the officially anointed tools. Despite your comment and the (well-intentioned) plans from browser vendors to do what they can to squash unencrypted HTTP, failure to use HTTPS, even with Let's Encrypt, is still a totally forgivable sin today. |
|
With nginx:
- `certbot certonly`
- press `2`
- type in your domain name
- press return, done
Add a few lines to your nginx config, done.
``` ssl_certificate /etc/letsencrypt/live/<yourdomain>/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/<yourdomain>/privkey.pem; ssl on; ```