当我使用nginx $http_x_forwarded_for
来获取用户 real_IP 时,但有时,我发现realIP在access.log中是双倍的,例如:"223.8.37.61, 123.151.77.70".
为什么呢?
答案 0 :(得分:0)
X-Forwarded-For
标头包含IP地址列表。使用realip模块解析标头以提取客户端的IP地址。
例如:
set_real_ip_from 192.168.1.1;
real_ip_header X-Forwarded-For;
有关详情,请参阅this document。