Enable HTTP2 for Keystone when TLS is enabled

Because why not? We already do it for virtual media.

Change-Id: Ia41d3df788ba1e35be88643b6bb4297aa42bfd45
This commit is contained in:
Dmitry Tantsur 2021-12-03 18:00:45 +01:00
parent 3a62aba648
commit 42d281e771

View File

@ -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 %}