How to only enable TLS1.1 or TLS1.2 only

Hi all,

I want to only use TLS1.1 or above with the nginx. I searched on the
Internet but there is only information about how to enable ssl/tls
with the nginx. I can write

"ssl_protocols              SSLv3 SSLv2 TLSv1;"

in the nginx.conf to enable sslv3,sslv2 and tlsv1.

So what can I do if I want to only enable tls1.1 or above?

Thanks!

Please consult the docs:
http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_protocols

Upgrade toat least1.1.13 and 1.0.12 and specify

ssl_protocolsTLSv1.1 TLSv1.2;


thank you very much!

2012/8/21 Lukas T. [email protected]: