change attribute name for better readability
This commit is contained in:
parent
c2b896ea52
commit
a978ac74fc
@ -14,7 +14,7 @@ events {
|
|||||||
|
|
||||||
http {
|
http {
|
||||||
{% if 'set_real_ips' in nginx -%}
|
{% 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 }};
|
set_real_ip_from {{ ip }};
|
||||||
{% endfor -%}
|
{% endfor -%}
|
||||||
real_ip_header {{ nginx.get('set_real_ips', {}).get('real_ip_header', 'X-Forwarded-For') }};
|
real_ip_header {{ nginx.get('set_real_ips', {}).get('real_ip_header', 'X-Forwarded-For') }};
|
||||||
|
@ -4,7 +4,7 @@ nginx:
|
|||||||
with_luajit: False
|
with_luajit: False
|
||||||
with_openresty: True
|
with_openresty: True
|
||||||
set_real_ips: # NOTE: to use this, nginx must have http_realip module enabled
|
set_real_ips: # NOTE: to use this, nginx must have http_realip module enabled
|
||||||
ips:
|
from_ips:
|
||||||
- 10.10.10.0/24
|
- 10.10.10.0/24
|
||||||
real_ip_header: X-Forwarded-For
|
real_ip_header: X-Forwarded-For
|
||||||
modules:
|
modules:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user