Nginx 与 cloudflare 的反向 DNS

Nginx 与 cloudflare 的反向 DNS

https://www.nginx.com/resources/wiki/modules/rdns/

https://github.com/flant/nginx-http-rdns

如何让 nginx-http-rdns 模块与 cloudflare 免费 DDoS 保护配合使用?我希望使用此模块来验证搜索引擎机器人(问题 #10 有验证机器人的方法)。但不知道如何让此模块与 cloudflare DDoS 配合使用(问题 #19 - 有一个 stackoverflow 示例)。有人能帮忙吗?或者也许有一种方法可以在没有此模块的情况下做到这一点?

例子: https://stackoverflow.com/questions/62445810/nginx-http-rdns-with-cloudflare

答案1

您可以使用realip 模块将客户端的 IP 地址替换为 CloudFlare 的地址。这发生在第一个阶段在执行任何其他操作之前,RDNS 模块将正常工作并查看客户端的 IP 地址,而不是 CloudFlare 的 IP 地址。

示例配置(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 2400:cb00::/32;
set_real_ip_from 2405:8100::/32;
set_real_ip_from 2405:b500::/32;
set_real_ip_from 2606:4700::/32;
set_real_ip_from 2803:f800::/32;
set_real_ip_from 2c0f:f248::/32;
set_real_ip_from 2a06:98c0::/29;
real_ip_header CF-Connecting-IP;

相关内容