@@ -19,4 +19,4 @@ nginx_config: | |||
- source: salt://nginx/ng/files/nginx.conf | |||
- template: jinja | |||
- context: | |||
config: {{ nginx.server.config|json() }} | |||
config: {{ nginx.server.config|json(sort_keys=False) }} |
@@ -1,6 +1,6 @@ | |||
{% macro sls_block(dict) %} | |||
{% for key, value in dict.items() %} | |||
- {{ key }}: {{ value|json() }} | |||
- {{ key }}: {{ value|json(sort_keys=False) }} | |||
{% endfor %} | |||
{% endmacro %} | |||
@@ -93,7 +93,7 @@ nginx_server_available_dir: | |||
- source: salt://nginx/ng/files/server.conf | |||
- template: jinja | |||
- context: | |||
config: {{ settings.config|json() }} | |||
config: {{ settings.config|json(sort_keys=False) }} | |||
{% if 'overwrite' in settings and settings.overwrite == False %} | |||
- unless: | |||
- test -e {{ server_curpath(server) }} |