浏览代码

fix name of cmd call

susefix
Kent Shultz 10 年前
父节点
当前提交
26f606e634
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      nginx/templates/config.jinja

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

@@ -13,7 +13,7 @@ events {
}

http {
{% if 'set_real_ips' in nginx and salt['cmdmod.retcode']('nginx -V 2>&1 | grep http_realip_module') == 0 -%}
{% if 'set_real_ips' in nginx and salt['cmd.retcode']('nginx -V 2>&1 | grep http_realip_module') == 0 -%}
{% for ip in nginx.get('set_real_ips', {}).get('ips', []) -%}
set_real_ip_from {{ ip }};
{% endfor -%}

正在加载...
取消
保存