The certbot docs say this for cert.pem
and chain.pem
:
If you provide one of these files to your web server, you must provide both of them, or some browsers will show “This Connection is Untrusted” errors for your site, some of the time.
This is the typical nginx config:
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/example.com/chain.pem;
??? /etc/letsencrypt/live/example.com/cert.pem;
Where do I set cert.pem
?