11

因此,我使用 nginx 进行了简单的设置,用于静态媒体和负载平衡,并使用 tornado 作为 django 的网络服务器(运行 4 个服务器)。我的问题是 remote_addr 没有传递给 django 所以我得到一个 KeyError:

article.ip = request.META['REMOTE_ADDR']

由于 nginx.conf,远程地址作为 X-Real-IP (HTTP_X_REAL_IP) 发送:

    location / {
        proxy_pass_header Server;
        proxy_set_header Host $http_host;
        proxy_redirect false;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Scheme $scheme;
        proxy_pass http://frontends;
    }

由于 HTTP 附加到 META 键,我不能只做 proxy_set_header remote_addr $remote_addr。如果没有找到远程地址密钥,我可以做的是读取 X-Real-IP,但我很好奇是否有更智能的解决方案。

谢谢!

4

6 回答 6

17

这是我解决问题的方法。通过使用这个中间件:

class SetRemoteAddrMiddleware(object):
    def process_request(self, request):
        if not request.META.has_key('REMOTE_ADDR'):
            try:
                request.META['REMOTE_ADDR'] = request.META['HTTP_X_REAL_IP']
            except:
                request.META['REMOTE_ADDR'] = '1.1.1.1' # This will place a valid IP in REMOTE_ADDR but this shouldn't happen

希望有帮助!

于 2010-03-11T13:29:21.160 回答
14

试试这个:

location / {
    proxy_pass http://frontends;
    proxy_pass_header Server;
    proxy_redirect off;
    proxy_set_header Host $http_host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Scheme $scheme;
    proxy_set_header REMOTE_ADDR $remote_addr;
}

只需添加proxy_set_header REMOTE_ADDR,它应该可以正常工作。

试过:

  • Django 1.5.4
  • Nginx 1.4.3
  • 龙卷风 2.2.1
于 2013-11-25T19:31:56.223 回答
5

我有类似的设置。把nginx放在apache前面后,发现apache日志里的IP一直是127.0.0.1。安装“libapache2-mod-rpaf”似乎可以解决它。我不知道你的问题是否相关。

于 2009-10-30T03:07:16.640 回答
5

添加“fastcgi_param REMOTE_ADDR $remote_addr;” 到 nginx.conf 文件:

    location / {
    # host and port to fastcgi server
    fastcgi_pass 127.0.0.1:8801;
    fastcgi_param PATH_INFO $fastcgi_script_name;
    fastcgi_param REQUEST_METHOD $request_method;
    fastcgi_param QUERY_STRING $query_string;
    fastcgi_param CONTENT_TYPE $content_type;
    fastcgi_param CONTENT_LENGTH $content_length;
    fastcgi_pass_header Authorization;
    fastcgi_intercept_errors off;
    ...
    # Add this line!
    fastcgi_param REMOTE_ADDR $remote_addr;
    ...
}

资料来源:如何为 django 使用 nginx 虚拟服务器 + fcgi?

于 2011-02-22T22:23:45.740 回答
2

不,不可能传递 remote_addr。所以我知道的唯一解决方案是使用 X-Real-IP 或 X-Forwarded-For 并确保后端正确处理这些。

编辑:这适用于 fastcgi_pass,而不是常规的 nginx proxy_pass

于 2009-11-03T08:04:58.660 回答
2

对我来说,使用以下方法有效:

server {
    listen 80;
    server_name foo.bar.com;
    location / {
        proxy_pass http://127.0.0.1:8000;
        proxy_set_header X-Forwarded-For $remote_addr;
    }
}

这适用于 django 1.4(特别是 localshop)。

于 2012-05-11T02:02:19.747 回答