From a457a403599c50f6b02f8cf413819e893889fce6 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Tue, 13 Nov 2018 20:42:10 +1000 Subject: [PATCH] Fix incorrect template var --- src/backend/templates/_listen.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/templates/_listen.conf b/src/backend/templates/_listen.conf index b3f21cfe..d38a815a 100644 --- a/src/backend/templates/_listen.conf +++ b/src/backend/templates/_listen.conf @@ -1,5 +1,5 @@ listen 80; {% if certificate -%} - listen 443 ssl{% if http2 %} http2{% endif %}; + listen 443 ssl{% if http2_support %} http2{% endif %}; {% endif %} server_name {{ domain_names | join: " " }};