Beginning-Ansible-Concepts-.../chapter10/roles/load_balancer/templates/backends.cfg.j2

7 lines
161 B
Text
Raw Normal View History

2022-03-21 18:17:54 +01:00
backend web_servers
balance roundrobin
{% for host in groups.webservers %}
server {{ host }} {{ host }}:{{ hostvars[host].http_port }}
{% endfor %}