Django uWSGI NGINX 错误请求 400

标签 django nginx uwsgi

在尝试部署我使用 django 开发服务器开发的博客时收到 400 错误后,我启动了一个新的测试项目(使用 startproject 并没有执行其他任何操作 - 只是到处进行一些配置) - 尽可能少,以使其尽可能简单。

当我执行“manage.py runserver”时,它会向我显示一个页面,说我看到了这个,因为我的设置中有“DEBUG = True”。

到目前为止一切顺利。没有错误。

但是如果我使用 uWSGI 和 NGINX,我会再次收到“错误请求 (400)”页面。

最初,我遇到了一些导入错误,我必须向 sys.path 添加一些路径。 但现在我没有收到来自 python、NGINX 或 uWSGI 的错误,并且仍然得到 400 错误页面。

我尝试过以下方法:

  • 调试=假
  • TEMPLATE_DEBUG = False
  • ALLOWED_HOSTS = ['*']
  • ALLOWED_HOSTS = '*'
  • 注释掉了 MIDDLEWARE_CLASSES 中的“django.middleware.clickjacking.XFrameOptionsMiddleware”
  • 将 NGINX 与 uWSGI 结合使用,而不是使用 Apache 与 mod_wsgi (我坚持使用此设置,因为我喜欢它,但这并没有解决我的问题)

我的设置: uWSGI、NGINX 和客户端(firefox)在我的笔记本(kubuntu 14.04)中运行。 Vhost/子域名 (cefk_blawg.localhost),位于主机文件 (cefk_blawg.localhost 127.0.0.1) 中,并在 NGINX 中正确配置(我知道,因为当我使用金字塔测试项目时,它实际上就像一个魅力) )。 没有防火墙阻碍。 使用 virtualenv 并 pip 安装了其中的所有内容 (django/uwsgi/pillow/mysql-python)。

我的uwsgi.ini:

[uwsgi]

# Unix socket (full path)
socket = /tmp/cefk_blawg.sock

# Set socket permissions
chmod-socket = 666

# Master process
master = true

# Maximum number of worker processes
processes = 4

# Set timeout
harakiri = 60
harakiri-verbose = true

# Limit post-size
limit-post = 65536

# When to start buffering for post-vars
post-buffering = 1       ## none of these makes my problem go away
#post-buffering = 8192   ## none of these makes my problem go away
#post-buffering = 32768  ## none of these makes my problem go away

# Daemonize
daemonize = /home/cefk/Dokumente/cefk_blawg/uwsgi.log
pidfile = /home/cefk/Dokumente/cefk_blawg/uwsgi.pid

# Limit queue
listen = 64
max-requests = 1000

# Whatever this does .. it works for pyramid (got it from a tutorial)
reload-on-as = 128
reload-on-rss = 96

no-orphans = true
log-slow = true

# This is the full path to my virtualenv
virtualenv = /home/cefk/Dokumente/cefk_blawg/venv

# Django wsgi file
wsgi-file = /home/cefk/Dokumente/cefk_blawg/cefk_info/cefk_info/wsgi.py

# Settings file (this seems to do nothing)
# And it gets set in the wsgi.py-file
env = DJANGO_SETTINGS_MODULE=cefk_info.settings

# Set domain (this seems to do nothing)
#domain = cefk_blawg.localhost

# Django-project base directory (this seems to do nothing)
#chdir = /home/cefk/Dokumente/cefk_blawg/cefk_info

# This seems to do nothing
#pythonpath=/home/cefk/Dokumente/cefk_blawg/cefk_info/cefk_info/

# Set vhost (this seems to do nothing)
#vhost = true

# Clean up environment on exit
vacuum = true
#

我的 wsgi.py 文件:

import os
import pprint
import site
import sys
from django.core.wsgi import get_wsgi_application

base_parent = '/home/cefk/Dokumente/cefk_blawg/'
base = '/home/cefk/Dokumente/cefk_blawg/cefk_info/'

sys.path.append(base_parent)
sys.path.append(base)

site.addsitedir(
    '/home/cefk/Dokumente/cefk_blawg/venv/local/lib/python2.7/site-packages'
)
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cefk_info.settings")

activate_env = '/home/cefk/Dokumente/cefk_blawg/venv/bin/activate_this.py'
execfile(activate_env, dict(__file__=activate_env))

# I stole this shamelessly from another stackoverflow-post - this is good to have
class LoggingMiddleware:
    def __init__(self, application):
        self.__application = application

    def __call__(self, environ, start_response):
        errors = environ['wsgi.errors']
        pprint.pprint(('REQUEST', environ), stream=errors)

        def _start_response(status, headers, *args):
            pprint.pprint(('RESPONSE', status, headers), stream=errors)
            return start_response(status, headers, *args)

        return self.__application(environ, _start_response)

application = LoggingMiddleware(get_wsgi_application())

这是我从 wsgi.py 中的 LoggingMiddleware 获得的请求/响应:

(
    'REQUEST',
    {
        'CONTENT_LENGTH': '',
        'CONTENT_TYPE': '',
        'DOCUMENT_ROOT': '/home/cefk/Dokumente/cefk_blawg/cefk_info/cefk_info',
        'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
        'HTTP_ACCEPT_ENCODING': 'gzip, deflate',
        'HTTP_ACCEPT_LANGUAGE': 'de,en-US;q=0.7,en;q=0.3',
        'HTTP_CACHE_CONTROL': 'max-age=0',
        'HTTP_CONNECTION': 'keep-alive',
        'HTTP_DNT': '1',
        'HTTP_HOST': 'cefk_blawg.localhost',
        'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0',
        'PATH_INFO': '/',
        'QUERY_STRING': '',
        'REMOTE_ADDR': '127.0.0.1',
        'REMOTE_PORT': '42518',
        'REQUEST_METHOD': 'GET',
        'REQUEST_URI': '/',
        'SERVER_NAME': 'cefk_blawg.localhost',
        'SERVER_PORT': '80',
        'SERVER_PROTOCOL': 'HTTP/1.1',
        'UWSGI_SCHEME': 'http',
        'uwsgi.node': 'lt',
        'uwsgi.version': '2.0.5.1',
        'wsgi.errors': <open file 'wsgi_errors', mode 'w' at 0x7ff4337110c0>,
        'wsgi.file_wrapper': <built-in function uwsgi_sendfile>,
        'wsgi.input': <uwsgi._Input object at 0x7ff437271e70>,
        'wsgi.multiprocess': True,
        'wsgi.multithread': False,
        'wsgi.run_once': False,
        'wsgi.url_scheme': 'http',
        'wsgi.version': (1, 0)
    }
)
('RESPONSE', '400 BAD REQUEST', [('Content-Type', 'text/html')])
[pid: 2652|app: 0|req: 1/1] 127.0.0.1 () {42 vars in 675 bytes} [Thu Jun 12 17:16:59 2014] GET / => generated 26 bytes in 150 msecs (HTTP/1.1 400) 1 headers in 53 bytes (1 switches on core 0)

编辑: 这是我的 nginx 配置(请注意,文件夹名称可能同时已更改 - 所以请忽略它):

# Server configuration
server {
    # Make site accessible from http://cefk_blawg.localhost/
    server_name cefk_blawg.localhost;

    root /home/cefk/Dokumente/cefk_blawg_django;

    # Set charset
    charset utf-8;
    client_max_body_size 100M;

    location /static {
        autoindex on;
        alias /home/cefk/Dokumente/cefk_blawg_django/static;
    }

    location /media {
        autoindex on;
        alias /home/cefk/Dokumente/cefk_blawg_django/media;
    }

    ################################
    # Port-based (old)             #
    ################################
    #location / {
    #    try_files $uri @application;
    #}  

    #location @application {
    #    include /etc/nginx/uwsgi_params;
    #    uwsgi_pass 127.0.0.1:8000;
    #}
    ################################
    # /Port-based (old)            #
    ################################

    location / {
        include /etc/nginx/uwsgi_params;
        uwsgi_pass unix:///tmp/cefk_blawg.sock;
    }
}

/编辑

我没主意了。

请帮忙。

最佳答案

在settings.py中

ALLOWED_HOSTS = ['*']

解决了

关于Django uWSGI NGINX 错误请求 400,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24192283/

相关文章:

java - uWSGI 和 Zuul : every other request fails

python - 将 static 一些静态文件位置从/static/file.js 更改为/file.js

python - 如何在 Jinja 中循环具有多个值的字典?

nginx - 重写nginx入口的路径

nginx - squid 可以跑在 nginx 后面吗?

python - nginx uwsgi 和 cgi python 脚本

python - 将 Django QuerySet 转换为 pandas DataFrame

python - 如何将外键选择限制为同一模型中的另一个外键

maven - 在带有 HTTPS 的 NGinx 后面使用 Maven 和 Docker + Nexus 3

plugins - uwsgi python3插件不起作用