Errors from browsers with ssl_session_tickets off (nginx)

Maybe use this:

ssl_session_timeout 1d;
ssl_session_cache shared:SSL:50m;
ssl_session_tickets off;

source: https://mozilla.github.io/server-side-tls/ssl-config-generator/

BTW: Generally it is recommend to disable session tickets when using nginx as it would make Forward Secrecy useless.