From 60f4cdbb69921155b3c6206917792e62eb9c6234 Mon Sep 17 00:00:00 2001 From: Rob Graeber <2387719+robgraeber@users.noreply.github.com> Date: Fri, 8 May 2020 03:32:37 -0700 Subject: [PATCH] Add http2 support for default nginx script --- template/server-block-conf.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/server-block-conf.ejs b/template/server-block-conf.ejs index d0a73a6..ddc8133 100644 --- a/template/server-block-conf.ejs +++ b/template/server-block-conf.ejs @@ -36,7 +36,7 @@ server { } if (s.hasSsl) { %> - listen 443 ssl; + listen 443 ssl http2; ssl_certificate <%-s.crtPath%>; ssl_certificate_key <%-s.keyPath%>;