소스 검색

Workaround for include being defined too early

This is crap but configuration for http scope cannot be both ordered and
merged from map.jinja it seems, see issue #40.
susefix
Gilles Dartiguelongue 9 년 전
부모
커밋
294a775b98
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      nginx/ng/files/nginx.conf

+ 5
- 0
nginx/ng/files/nginx.conf 파일 보기

@@ -7,8 +7,13 @@
{%- elif value is mapping -%}
{{ key|indent(ind, True) }}{{ operator }}{{ '{' }}
{%- for k, v in value.items() %}
{%- if k != 'include' %}
{{ nginx_block(v, k, operator, delim, (ind + indent_increment)) }}
{%- endif %}
{%- endfor %}
{%- if 'include' in value.keys() %}
{{ nginx_block(value['include'], 'include', operator, delim, (ind + indent_increment)) }}
{%- endif %}
{{ '}'|indent(ind, True) }}
{%- elif value is iterable -%}
{%- for v in value %}

Loading…
취소
저장