Nginx 应用获取真实ip地址 发表于 2018-03-15 | 分类于 Nginx | 浏览量: nginx配置如下: 1234567891011121314# 第一层代理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;} 12# flask 获取用户真实地址request.environ.get('HTTP_X_REAL_IP', request.remote_addr)