upstream app { {% for host in groups['webserver'] %} server {{ host }}:80; {% endfor %} } server { listen 80; location / { proxy_pass http://app; } }