For security I have to setup a nginx server with TLSv1.1 or TLS v1.2. By default, nginx configuresTLSv1.
Reading the documentation I see that nginx has to set the following directive:
ssl_protocols TLSv1.1 TLSv1.2;
http://nginx.org/en/docs/http/configuring_https_servers.html
But when I run the command:
# /etc/init.d/nginx configtest
Following message appears:
Testing nginx configuration: [warn]: invalid value "TLSv1.1" in /etc/nginx/nginx.conf: 175
configuration file /etc/nginx/nginx.conf test failed
Is documentation lies?
platform is Debian Squeeze and nginx version is 0.7.67
thanks