fix formatting
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2020-05-23 02:02:06 +02:00
parent d48a80aaf6
commit c99f44aca7
2 changed files with 5 additions and 6 deletions

View File

@ -7,7 +7,6 @@
owner: root
group: root
mode: 0640
validate: /bin/bash -c 'nginx -t -c /dev/stdin <<< "events {worker_connections 10;} http { include %s; }"'
loop: "{{ nginx_vhosts_default + nginx_vhosts_extra }}"
loop_control:
label: "{{ item.file }}"

View File

@ -34,11 +34,11 @@ http {
'' close;
}
{% for map in nginx_maps %}
map {{ map.input }} {{ map.output }} {
{% for param in map.parameters %}
{{ param }};
{% endfor %}
}
map {{ map.input }} {{ map.output }} {
{% for param in map.parameters %}
{{ param }};
{% endfor %}
}
{% endfor %}
sendfile on;