bifrost/playbooks/roles/bifrost-keystone-install/templates/nginx_conf.d_bifrost-keystone.conf.j2
Dmitry Tantsur da084360e5 Remove the keystone admin endpoint
It's no longer needed and was deprecated in Xena.

Change-Id: Idff1097c13f483f8290bc800388cff3746324dbd
2021-10-04 14:46:27 +02:00

18 lines
489 B
Django/Jinja

# {{ ansible_managed }}
server {
{% if enable_tls | bool %}
listen 5000 ssl;
ssl_certificate {{ tls_certificate_path }};
ssl_certificate_key {{ nginx_private_key_path }};
{% else %}
listen 5000;
{% endif %}
access_log {{ nginx_log_dir }}/keystone/access.log;
error_log {{ nginx_log_dir }}/keystone/error.log;
location / {
uwsgi_pass unix:///run/uwsgi/keystone-public.socket;
include uwsgi_params;
uwsgi_param SCRIPT_NAME '';
}
}