Merge "Enable HTTP2 for Keystone when TLS is enabled"

This commit is contained in:
Zuul 2021-12-07 05:59:02 +00:00 committed by Gerrit Code Review
commit f784e46bf3

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