Beginning-Ansible-Concepts-.../chapter10/roles/load_balancer/templates/backends.cfg.j2
2022-04-23 08:57:49 +01:00

6 lines
161 B
Django/Jinja

backend web_servers
balance roundrobin
{% for host in groups.webservers %}
server {{ host }} {{ host }}:{{ hostvars[host].http_port }}
{% endfor %}