9f9b66a985
Added variable horizon_bind_address which allows to define address on which horizon will be listening. horizon_listen_ports variable was converted to dict() and used in apache vhost template. As an addition metal jobs were added for horizon CI. Depends-On: https://review.opendev.org/681722 Change-Id: I11c3edec6d58e39da8de5e214fab9731eb5df9e2
6 lines
161 B
Django/Jinja
6 lines
161 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
{% for horizon_listen_port in horizon_listen_ports.values() %}
|
|
Listen {{ horizon_bind_address }}:{{ horizon_listen_port }}
|
|
{% endfor %}
|