使用了 Cloudflare等CND的网站 Nginx如何显示真实 IP

如果您的网站使用了 Cloudflare CDN,那么您可以通过设置 Nginx 的 real_ip_header  set_real_ip_from 指令来显示客户端的真实 IP。

具体来说,您需要在 Nginx 的配置文件中添加如下配置:

http {
    ...
    # 设置 Cloudflare 的 IP 范围
    set_real_ip_from 103.21.244.0/22;
    set_real_ip_from 103.22.200.0/22;
    set_real_ip_from 103.31.4.0/22;
    set_real_ip_from 104.16.0.0/12;
    set_real_ip_from 108.162.192.0/18;
    set_real_ip_from 131.0.72.0/22;
    set_real_ip_from 141.101.64.0/18;
    set_real_ip_from 162.158.0.0/15;
    set_real_ip_from 172.64.0.0/13;
    set_real_ip_from 173.245.48.0/20;
    set_real_ip_from 188.114.96.0/20;
    set_real_ip_from 190.93.240.0/20;
    set_real_ip_from 197.234.240.0/22;
    set_real_ip_from 198.41.128.0/17;
    set_real_ip_from 199.27.128.0/21;
    set_real_ip_from 2400:cb00::/32;
    set_real_ip_from 2606:4700::/32;
    set_real_ip_from 2803:f800::/32;
    set_real_ip_from 2405:b500::/32;
    set_real_ip_from 2405:8100::/32;
    set_real_ip_from 2c0f:f248::/32;
    set_real_ip_from 2a06:98c0::/29;

    # 设置 Nginx 解析客户端真实 IP 的 Header
    real_ip_header CF-Connecting-IP;

    # 允许客户端真实 IP 访问
    #geoip_proxy_recursive on;
    real_ip_recursive on;
    ...
}

在上述配置中,我们通过 set_real_ip_from 指令设置了 Cloudflare 的 IP 范围,以便 Nginx 可以识别客户端的真实 IP。同时,我们通过 real_ip_header 指令设置了 Nginx 解析客户端真实 IP 的 Header,这里我们使用了 Cloudflare 的 CF-Connecting-IP Header。最后,我们还通过 geoip_proxy_recursive  real_ip_recursive 指令允许客户端真实 IP 访问。

配置完成后,您可以在 Nginx 的访问日志中使用 $realip_remote_addr 变量来显示客户端的真实 IP,例如:

log_format main '$remote_addr - $realip_remote_addr [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

在上述配置中,我们使用了 $realip_remote_addr 变量来显示客户端的真实 IP,这个变量会自动解析客户端的真实 IP,而不是显示 Cloudflare 的 IP。

 

THE END
分享
使用了 Cloudflare等CND的网站 Nginx如何显示真实 IP
如果您的网站使用了 Cloudflare CDN,那么您可以通过设置 Nginx 的 real_ip_header 和 set_real_ip_from 指令来显示客户端的真实 IP。 具体来说,您需要在 Ngi……
<<上一篇
下一篇>>