Hello,
just checkin in if anyone encountered this problem:
I'm trying to display my site as an motd and encounter an https invalid certificate error.
https://imgur.com/a/MFe1nqm
these are my settings for nginx going along the certificate
Code:
ssl_protocols TLSv1.1 TLSv1.2;
ssl_ciphers 'ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384';
ssl_prefer_server_ciphers on;
ssl_session_timeout 10m;
ssl_certificate /a/long/path/fullchain.pem;
ssl_certificate_key /a/long/path/privkey.pem;
add_header Strict-Transport-Security "max-age=31536000" always;
I guess I'll fiddle a bit with the settings while I wait for your experiences.