From 40547906f7e872112b9700a1bea0a765524ab558 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Fri, 19 Aug 2022 15:04:11 +0200 Subject: [PATCH] chore(docker): reuse nginx ssl connection Signed-off-by: rjshrjndrn --- scripts/dockerfiles/nginx/location.list | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/dockerfiles/nginx/location.list b/scripts/dockerfiles/nginx/location.list index f55264fff..040dc722a 100644 --- a/scripts/dockerfiles/nginx/location.list +++ b/scripts/dockerfiles/nginx/location.list @@ -10,6 +10,7 @@ location /api/ { rewrite ^/api/(.*) /$1 break; proxy_ssl_server_name on; + proxy_ssl_session_reuse on; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; @@ -27,6 +28,7 @@ location / { error_page 404 =200 /index.html; proxy_ssl_server_name on; + proxy_ssl_session_reuse on; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;