http { upstream app { {% for host in ip %} server {{ host.ip }}; {% endfor %} } server { listen 80; location / { proxy_pass http://app; } } }