瀏覽代碼

change attribute name for better readability

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

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

@@ -14,7 +14,7 @@ events {

http {
{% if 'set_real_ips' in nginx -%}
{% for ip in nginx.get('set_real_ips', {}).get('ips', []) -%}
{% for ip in nginx.get('set_real_ips', {}).get('from_ips', []) -%}
set_real_ip_from {{ ip }};
{% endfor -%}
real_ip_header {{ nginx.get('set_real_ips', {}).get('real_ip_header', 'X-Forwarded-For') }};

+ 1
- 1
pillar.example 查看文件

@@ -4,7 +4,7 @@ nginx:
with_luajit: False
with_openresty: True
set_real_ips: # NOTE: to use this, nginx must have http_realip module enabled
ips:
from_ips:
- 10.10.10.0/24
real_ip_header: X-Forwarded-For
modules:

Loading…
取消
儲存