You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Syntax: ssl_session_timeout time;
Default: ssl_session_timeout 5m;
Context: http, server.
Specifies a time during which a client may reuse the session parameters.
Default at 5m, while Mozilla has them set at 1d.
There has been different perspectives on the "right" time to set it to.
More info:
Mozilla has them set at TLSv1.2 TLSv1.3
According to Nginx,
The TLSv1.1 and TLSv1.2 parameters (1.1.13, 1.0.12) work only when OpenSSL 1.0.1 or higher is used.
The TLSv1.3 parameter (1.13.0) works only when OpenSSL 1.1.1 or higher is used.
Syntax: ssl_ciphers ciphers;
Default: ssl_ciphers HIGH:!aNULL:!MD5;
Context: http, server
Specifies the enabled ciphers. The ciphers are specified in the format understood by the OpenSSL library, for example:
ssl_ciphers ALL:!aNULL:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
The full list can be viewed using the “openssl ciphers” command.
Syntax: ssl_prefer_server_ciphers on | off;
Default: ssl_prefer_server_ciphers off;
Context: http, server
Specifies that server ciphers should be preferred over client ciphers when using the SSLv3 and TLS protocols.
Mozilla has updated their SSL Config tool. We have SSL setup on production, see https://github.com/Seneca-CDOT/telescope/blob/master/config/nginx.conf.template.
If there is anything that Mozilla is doing, or doing different from us, let's figure out why and make sure we fix our config if it's wrong.
The text was updated successfully, but these errors were encountered: