summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/ngx_http_proxy_module.c
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2017-04-18 15:12:38 +0300
committerSergey Kandaurov <pluknet@nginx.com>2017-04-18 15:12:38 +0300
commit9a37eb3a62130473596e0e4c2e388d80bdb14956 (patch)
tree55d5165ecab0200b8b9258572397b42c3921bd9b /src/http/modules/ngx_http_proxy_module.c
parent05841adfb2e5d50dee066b6f92cbb95b78c5b725 (diff)
downloadnginx-9a37eb3a62130473596e0e4c2e388d80bdb14956.tar.gz
nginx-9a37eb3a62130473596e0e4c2e388d80bdb14956.tar.bz2
SSL: added support for TLSv1.3 in ssl_protocols directive.
Support for the TLSv1.3 protocol will be introduced in OpenSSL 1.1.1.
Diffstat (limited to 'src/http/modules/ngx_http_proxy_module.c')
-rw-r--r--src/http/modules/ngx_http_proxy_module.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/modules/ngx_http_proxy_module.c b/src/http/modules/ngx_http_proxy_module.c
index e594d069a..0fee2c2c4 100644
--- a/src/http/modules/ngx_http_proxy_module.c
+++ b/src/http/modules/ngx_http_proxy_module.c
@@ -235,6 +235,7 @@ static ngx_conf_bitmask_t ngx_http_proxy_ssl_protocols[] = {
{ ngx_string("TLSv1"), NGX_SSL_TLSv1 },
{ ngx_string("TLSv1.1"), NGX_SSL_TLSv1_1 },
{ ngx_string("TLSv1.2"), NGX_SSL_TLSv1_2 },
+ { ngx_string("TLSv1.3"), NGX_SSL_TLSv1_3 },
{ ngx_null_string, 0 }
};