8 lines
219 B
Plaintext
8 lines
219 B
Plaintext
{%- set src = (j2cfg.trusted_sources or []) | any_to_str_list | uniq_str_list | ngx_esc -%}
|
|
{%- if src %}
|
|
{%- for s in src %}
|
|
set_real_ip_from {{ s }};
|
|
{%- endfor %}
|
|
{%- else %}
|
|
set_real_ip_from unix: ;
|
|
{%- endif %} |