NodeJS version:
8.3
What is the expected behaviour?
The page should load
Removing ssl_session_tickets off from the nginx config fixed the issue. Perhaps remove it from the template?
Mozilla/IETF suggest disabling session-tickets because the key to sign them is only changed when the webserver is restarted. That could lead to no perfect forward secrecy and you do not want that.
ssl_session_tokens off breaks if it鈥檚 not set the same for all ssl-enabled server{} blocks. So if you have 2 server configurations and and you have ssl_server_tokens on in one (which is the default so it counts even if you omit it) and set to off in another, it will break the one where it鈥檚 set to off in certain browsers (namely Chrome, Firefox, curl but not IE). The easiest way to resolve this, unless you have multiple http{} blocks, is to just set it off in the http{} block.
source: https://community.letsencrypt.org/t/errors-from-browsers-with-ssl-session-tickets-off-nginx/18124
I hope it solves your issue :worried:
It does, thank you! Would you accept a PR adding this to the documentation?
@LeoTindall sure! Although I suggest documenting it in the source code, along the line at fault. This avoids bloating our production guide (which is already quite messy tbh).
Most helpful comment
Mozilla/IETF suggest disabling session-tickets because the key to sign them is only changed when the webserver is restarted. That could lead to no perfect forward secrecy and you do not want that.
ssl_session_tokens offbreaks if it鈥檚 not set the same for all ssl-enabledserver{}blocks. So if you have 2 server configurations and and you havessl_server_tokens onin one (which is the default so it counts even if you omit it) and set tooffin another, it will break the one where it鈥檚 set tooffin certain browsers (namely Chrome, Firefox, curl but not IE). The easiest way to resolve this, unless you have multiplehttp{}blocks, is to just set it off in thehttp{}block.source: https://community.letsencrypt.org/t/errors-from-browsers-with-ssl-session-tickets-off-nginx/18124
I hope it solves your issue :worried: