From 42d281e7712d6bf76576817ff99f28b7f2f75bfa Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Fri, 3 Dec 2021 18:00:45 +0100 Subject: [PATCH] Enable HTTP2 for Keystone when TLS is enabled Because why not? We already do it for virtual media. Change-Id: Ia41d3df788ba1e35be88643b6bb4297aa42bfd45 --- .../templates/nginx_conf.d_bifrost-keystone.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/roles/bifrost-keystone-install/templates/nginx_conf.d_bifrost-keystone.conf.j2 b/playbooks/roles/bifrost-keystone-install/templates/nginx_conf.d_bifrost-keystone.conf.j2 index 309253c83..c246982c9 100644 --- a/playbooks/roles/bifrost-keystone-install/templates/nginx_conf.d_bifrost-keystone.conf.j2 +++ b/playbooks/roles/bifrost-keystone-install/templates/nginx_conf.d_bifrost-keystone.conf.j2 @@ -1,7 +1,7 @@ # {{ ansible_managed }} server { {% if enable_tls | bool %} - listen 5000 ssl; + listen 5000 ssl http2; ssl_certificate {{ tls_certificate_path }}; ssl_certificate_key {{ nginx_private_key_path }}; {% else %}