> set_real_ip_from2 <cloudflare ip>; > ... > set_real_ip_from2 <cloudflare ip>; > real_ip_header2 CF-Connecting-IP; > >сначалаотработаютдирективы set_real_ip_from и real_ip_header >измодуля ngx_http_realip_module имодульу...
If you’re using Cloudflare you wantCF-Connecting-IP. If you’re usingngx_http_realip_module, you wantX-Real-IP. If you’re behind AWS ALB you want the rightmost-ishX-Forwarded-ForIP. If you’re directly connected to the internet, you wantRemoteAddr(or equivalent). And so on. There...
map $remote_addr $real_remote_addr { ip_of_vps_server $http_x_forwarded_for; ip_of_cloudflare_1 $http_cf_connecting_ip; ... ip_of_cloudflare_N $http_cf_connecting_ip; default $remote_addr; } > > Ятакпонимаю, чтоспомощьюпрограммирован...
новцелом - этотосамое "программированиенаконфигах" map $http_are_we_behind_cloudflare $real_remote_addr { 'yes' $http_cf_connecting_ip; default $http_x_forwarded_for; } вт, 6 июн. 2023 г. в 12:54, ИльяШип...