1

这是 .ini 文件:

module=myapp.wsgi:application
master=True
pidfile=/tmp/project-master.pid
socket=127.0.0.1:8000
vacuum=True
max-requests=5000
daemonize=/home/mercier/django/site/wsgi.log
buffer-size=327680
processes=16
listen=500
timeout=10
post-buffering=1

nginx 使用 uwsgi_pass 指令转发连接。

从 django 看不到任何发布数据 - request.POST 只是 {}。这是一个大问题......我该如何解决这个问题?在开发(runserver)中看到了发布数据。

重要提示:nginx 和 wsgi 都以 200(OK)响应。我还尝试设置不同的后缓冲(在这里和那里找到),但没有区别......

django 1.4 uwsgi 1.9.15 nginx 1.2.1

EDIT3:现在我尝试使用 webob:(加载 request.environ)客户端在发送 POST/PUT 正文时断开连接(预计还有 39 个字节)

现在我手动尝试: print request.environ['wsgi.input'].read(39) -> is a empty line...

Edit4:我没有尝试在网上找到的任何提示,我正在考虑尝试 fcgi 或将其部署在运行服务器上;(

Edit5:相关的 nginx.conf(启用站点)部分:

server {

        listen   80; 

        server_name  localhost;

        access_log  /var/log/nginx/localhost.access.log;


        location / {
                root   /var/www;
                index  index.html index.htm;
                proxy_set_header X-FORWARDED-FOR $remote_addr;

                include uwsgi_params;
                uwsgi_pass_request_body on;
                uwsgi_pass_request_headers on;
                uwsgi_pass 127.0.0.1:8000;



        }

uwsgi_params:

uwsgi_param     QUERY_STRING            $query_string;
uwsgi_param     REQUEST_METHOD          $request_method;
uwsgi_param     CONTENT_TYPE            $content_type;
uwsgi_param     CONTENT_LENGTH          $content_length;

uwsgi_param     REQUEST_URI             $request_uri;
uwsgi_param     PATH_INFO               $document_uri;
uwsgi_param     DOCUMENT_ROOT           $document_root;
uwsgi_param     SERVER_PROTOCOL         $server_protocol;
uwsgi_param     UWSGI_SCHEME            $scheme;

uwsgi_param     REMOTE_ADDR             $remote_addr;
uwsgi_param     REMOTE_PORT             $remote_port;
uwsgi_param     SERVER_PORT             $server_port;
uwsgi_param     SERVER_NAME             $server_name;
uwsgi_param     DOCUMENT_BODY           $request_body;

编辑6:

这是我正在使用的应用程序(模块=):

import os,sys
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "site.settings")
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
"../../")))
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
"../")))

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
4

2 回答 2

1

尝试删除 nginx 以查看问题所在。在 http 模式下运行 uWSGI:

http-socket=127.0.0.1:8000

并连接到端口 8000

如果一切正常,请确保 nginx 正在传递 CONTENT_LENGTH 参数

最终粘贴你的 nginx 配置

于 2013-08-31T04:16:16.133 回答
0

x=request.body

这应该是 wsgi 运行的任何 django 应用程序的第一行。然后 POST DATA 工作。如果稍后使用,Django 必须立即读取请求正文。

但是,仍然存在这个问题:invalid uwsgi request (current strsize: 16705)。跳过。

所以我很难在这个设置中使用 uwsgi。我通过使用 fcgi 解决了这个问题,它没有这样的限制。

理由:strsize 不可配置——http: //comments.gmane.org/gmane.comp.python.wsgi.uwsgi.general/5712

编辑:罗伯托是对的—— strsize 与请求的正文无关,即使在 uwsgi 中也可以使用。在旅行、夜间等期间调试问题并不总是一个好主意;)但是,Django 必须立即阅读正文请求,这是毫无疑问的。必须在执行其他任何操作之前阅读请求的正文。

于 2013-08-30T22:39:06.920 回答