nginx-proxy-ip

#获取用户真实IP,并赋值给变量$clientRealIP

map $http_x_forwarded_for  $clientRealIp {

  "" $remote_addr;

        ~^(?P[0-9\.]+),?.*$  $firstAddr;

}

你可能感兴趣的:(nginx-proxy-ip)