浏览代码

Merge pull request #157 from SuperTux88/nginx-conf-include

Move includes to the top of nginx.conf
susefix
Javier Bértoli 7 年前
父节点
当前提交
240bd8348a
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. +4
    -0
      nginx/ng/files/nginx.conf

+ 4
- 0
nginx/ng/files/nginx.conf 查看文件

@@ -32,6 +32,10 @@
#
# This file is managed by Salt.

{% if 'include' in config.keys() %}
{{ nginx_block(config.pop('include'), 'include') }}
{%- endif -%}

{% for key, value in config.items() %}
{{ nginx_block(value, key) }}
{%- endfor -%}

正在加载...
取消
保存