9 lines
238 B
Plaintext
9 lines
238 B
Plaintext
{% if PROXY_REAL_IP_FROM != "" %}
|
|
{% for element in PROXY_REAL_IP_FROM.split(" ") +%}
|
|
set_real_ip_from {{ element }};
|
|
{% endfor %}
|
|
{% endif %}
|
|
real_ip_header {{ PROXY_REAL_IP_HEADER }};
|
|
real_ip_recursive {{ PROXY_REAL_IP_RECURSIVE }};
|
|
|