标签: python django ubuntu nginx gevent
我正在127.0.01:8000
127.0.01:8000
我正在使用以下代理:
proxy_pass http://127.0.0.1:8000;
问题是我需要将用户的IP地址传递给服务。
有什么想法吗?
答案 0 :(得分:20)
我通过设置自定义标头将真实IP发送到django:
proxy_set_header X-Real-IP $remote_addr;
request.META
答案 1 :(得分:3)
请参阅http://wiki.nginx.org/HttpRealIpModule