文章

使用了CDN(cloudflare)之后在nginx下获取用户真实IP。

  编辑于:2018-12-01
文章目录

前言

如果使用了CDN,那么后端程序获取到的IP地址就是CDN节点的IP地址了,这样在某些情况很不方便。所以在这种情况下可以通过nginx的realip模块来获取用户的IP,这里以cloudflare和lnmp一键包为例。

使用

为nginx添加模块

修改lnmp.conf文件,并且升级nginx即可。

cd /root/lnmp1.4
vi lnmp.conf

在lnmp.conf添加--with-http_realip_module,如下。

Nginx_Modules_Options='--with-http_realip_module'

升级nginx

./upgrade.sh nginx

http://nginx.org/en/download.html查看版本,然后输入合适的版本。
等待升级完成即可。

设置nginx配置

修改网站的配置文件vi /usr/loacl/nginx/conf/vhost/域名.conf
在server后面添加如下内容

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 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;

# use any of the following two
real_ip_header CF-Connecting-IP;
#real_ip_header X-Forwarded-For;

cloudflare的最新IP地址可见:https://www.cloudflare.com/ips
重载NGINX配置文件

service nginx reload

参考链接:
https://support.cloudflare.com/hc/en-us/articles/200170706-How-do-I-restore-original-visitor-IP-with-Nginx-

发表回复