add config option for real-ip header
This commit is contained in:
parent
2032a428a4
commit
1b81731a4b
2 changed files with 2 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
nginx:
|
nginx:
|
||||||
add_headers: []
|
add_headers: []
|
||||||
|
real_ip_header: "X-Forwarded-For"
|
||||||
real_ip_from:
|
real_ip_from:
|
||||||
"127.0.0.1": {}
|
"127.0.0.1": {}
|
||||||
"::1": {}
|
"::1": {}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{% for ip in nginx.real_ip_from %}
|
{% for ip in nginx.real_ip_from %}
|
||||||
set_real_ip_from {{ ip }};
|
set_real_ip_from {{ ip }};
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
real_ip_header X-Forwarded-For;
|
real_ip_header {{ nginx.real_ip_header }};
|
||||||
real_ip_recursive on;
|
real_ip_recursive on;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue