comparison src/http/modules/ngx_http_uwsgi_module.c @ 6981:08dc60979133

SSL: added support for TLSv1.3 in ssl_protocols directive. Support for the TLSv1.3 protocol will be introduced in OpenSSL 1.1.1.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 18 Apr 2017 15:12:38 +0300
parents fa56ab75cffc
children 08537eab4f23
comparison
equal deleted inserted replaced
6980:dbb0c854e308 6981:08dc60979133
127 { ngx_string("SSLv2"), NGX_SSL_SSLv2 }, 127 { ngx_string("SSLv2"), NGX_SSL_SSLv2 },
128 { ngx_string("SSLv3"), NGX_SSL_SSLv3 }, 128 { ngx_string("SSLv3"), NGX_SSL_SSLv3 },
129 { ngx_string("TLSv1"), NGX_SSL_TLSv1 }, 129 { ngx_string("TLSv1"), NGX_SSL_TLSv1 },
130 { ngx_string("TLSv1.1"), NGX_SSL_TLSv1_1 }, 130 { ngx_string("TLSv1.1"), NGX_SSL_TLSv1_1 },
131 { ngx_string("TLSv1.2"), NGX_SSL_TLSv1_2 }, 131 { ngx_string("TLSv1.2"), NGX_SSL_TLSv1_2 },
132 { ngx_string("TLSv1.3"), NGX_SSL_TLSv1_3 },
132 { ngx_null_string, 0 } 133 { ngx_null_string, 0 }
133 }; 134 };
134 135
135 #endif 136 #endif
136 137