这是 .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()