Nginx ssl_session_cache difference between shared:SSL and shared:MozSSL?

Viewed 1155

When setting ssl_session_cache in Nginx I often see examples set it as one of the two options:

ssl_session_cache shared:SSL:10m; or ssl_session_cache shared:MozSSL:10m;

What is the difference between these two?

1 Answers

It's just a name. It can be any string.

Related