这篇文章主要介绍“Python Flask如何使用Nginx做代理时如何获取真实IP”,在日常操作中,相信很多人在Python Flask如何使用Nginx做代理时如何获取真实IP问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Python Flask如何使用Nginx做代理时如何获取真实IP”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
首先是Nginx的配置,需要在转发的请求headers中设置好真实IP:
location /path {
proxy_pass http://127.0.0.1:5000/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
然后在Flask中通过headers获取IP:
ip = request.headers.get('X-Real-IP')
如果用户使用了代理,获取的IP是代理后的IP,就需要获取上层IP。 通过X-Forwarded-For获取IP的链路(结果是一个数组),IP以逗号隔开:
ip = request.headers.get('X-Forwarded-For')
附上配置
location /path/ {
error_page 404 /404.html;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-Ip $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://path;
error_page 500 502 503 504 /50x.html;
}
及查询结果展示
return jsonify(code=RET.OK, msg={"remote_addr": request.remote_addr,
"X-Real-Ip": request.headers.get("X-Real-Ip"),
"X-Forwarded-For": request.headers.get("X-Forwarded-For"),
"HOST":request.headers.get("Host"),
"X-Forwarded-Proto":request.headers.get("X-Forwarded-Proto"),
})
{
"code": "0",
"msg": {
"HOST": "www.baidu.com", # 域名
"X-Forwarded-For": "123.116.240.31",
"X-Forwarded-Proto": "http",
"X-Real-Ip": "123.116.240.31",
"remote_addr": "39.100.39.50"
}
到此,关于“Python Flask如何使用Nginx做代理时如何获取真实IP”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注天达云网站,小编会继续努力为大家带来更多实用的文章!