Nginx 应用获取真实ip地址

nginx配置如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 第一层代理
location / {
proxy_pass http://a-sz-s-5;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}

# 第二层代理
location ~ /api/.* {
rewrite ^/(.*)/$ /$1 permanent;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $http_x_real_ip;
proxy_pass http://127.0.0.1:5001;
}
1
2
# flask 获取用户真实地址
request.environ.get('HTTP_X_REAL_IP', request.remote_addr)