nginx获取cloudflare的真实用户ip


0,主要用作ip限制,加在想限制域名虚拟主机的配置文件里。

1
2
3
4
5
6
7
8
9
location / {
allow 12.23.34.45;
deny all;
... ...
... ...
... ...
set_real_ip_from 0.0.0.0/0;
real_ip_header CF-CONNECTING-IP;
}

Nginx-Logo-02.png