From 2789ed774a872df3a86c4ad5a7fb9b6a15d78c30 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Tue, 21 Nov 2017 21:18:51 +0000 Subject: [PATCH] Set the ordering right -h2c over http1.1 Signed-off-by: Patrick Uiterwijk --- files/httpd/h2.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/httpd/h2.conf.j2 b/files/httpd/h2.conf.j2 index 1d1528273a..8aacde89e5 100644 --- a/files/httpd/h2.conf.j2 +++ b/files/httpd/h2.conf.j2 @@ -1,3 +1,3 @@ {% if env == "staging" and ansible_distribution == 'Fedora' %} - Protocols h2 http/1.1 {% if not inventory_hostname.startswith('proxy') %} h2c {% endif %} + Protocols h2 {% if not inventory_hostname.startswith('proxy') %} h2c {% endif %} http/1.1 {% endif %}