瀏覽代碼

suppress newlines

susefix
Kent Shultz 10 年之前
父節點
當前提交
8f894ea6e6
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      nginx/templates/config.jinja

+ 3
- 3
nginx/templates/config.jinja 查看文件

@@ -55,14 +55,14 @@ http {
}
}
{% if pillar['nginx'] is defined -%}
{% if pillar['nginx']['redirect_numeric_ip']|default(False) %}
{% if pillar['nginx']['redirect_numeric_ip']|default(False) -%}
server {
server_name {% for ip in salt['network.interfaces']()['eth0']['inet'] %}{{ ip['address'] }}:80{% if not loop.last %} {% endif %}{% endfor %};
return 302 {{ pillar['nginx']['redirect_numeric_ip'] }};
access_log off;
}
{% endif %}
{% endif %}
{% endif -%}
{% endif -%}

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*.conf;

Loading…
取消
儲存