From c64afd2158bc54e06e4358a5889e156dda21109d Mon Sep 17 00:00:00 2001 From: Steven Tracey <70534545+nevetS-718@users.noreply.github.com> Date: Wed, 29 Sep 2021 10:10:15 -0400 Subject: [PATCH] Use http2 http2 is a more secure connection and in some cases can improve load times. --- tools/nginx.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/nginx.sh b/tools/nginx.sh index bd1c857..61ac713 100644 --- a/tools/nginx.sh +++ b/tools/nginx.sh @@ -165,7 +165,7 @@ server { # The majority of SSL options depend on what your application does or needs server { - listen 443 ssl; + listen 443 ssl http2; server_name example.com; ssl on; @@ -212,4 +212,4 @@ server { location / { proxy_pass http://node_js; } -} \ No newline at end of file +}