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

8 lines
229 B
Text
Raw Permalink Normal View History

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