ansible-role-nginx/templates/maps.conf.j2

10 lines
194 B
Django/Jinja

{% for map in nginx.maps %}
{% set m = nginx.maps[map] %}
# {{ map }}
map ${{ m.source }} ${{ m.destination }} {
{% for i in m.data %}
'{{ i }}' '{{ m.data[i] }}';
{% endfor %}
}
{% endfor %}