1

使用 manage.py runserver 我的调试工具栏可以正常工作,但是当我使用 nginx 时,我的工具栏只在面板中显示“DEBUG”。我已正确链接所有静态文件。

任何帮助将非常感激。

在此处输入图像描述

NGINX 会议

这是我网站的 conf,它包含在我的 nginx.conf 中

upstream polonel {
# fail_timeout=0 means we always retry an upstream even if it failed
# to return a good HTTP response (in case the Unicorn master nukes a
# single worker for timing out).

server unix:/home/chris/webapps/pyPolonel/run/gunicorn.sock fail_timeout=0;
}

server {

listen   80;enter code here
server_name localhost;

client_max_body_size 4G;

access_log /home/chris/webapps/pyPolonel/logs/nginx-access.log;
error_log /home/chris/webapps/pyPolonel/logs/nginx-error.log;

location /static/ {
    alias   /home/chris/webapps/pyPolonel/static/;
}

location /media/ {
    alias   /home/chris/webapps/pyPolonel/Polonel/media/;
}

location / {
    # an HTTP header important enough to have its own Wikipedia entry:
    #   http://en.wikipedia.org/wiki/X-Forwarded-For
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

    # enable this if and only if you use HTTPS, this helps Rack
    # set the proper protocol for doing redirects:
    # proxy_set_header X-Forwarded-Proto https;

    # pass the Host: header from the client right along so redirects
    # can be set properly within the Rack application
    proxy_set_header Host $http_host;

    # we don't want nginx trying to do something clever with
    # redirects, we set the Host: header above already.
    proxy_redirect off;

    # set "proxy_buffering off" *only* for Rainbows! when doing
    # Comet/long-poll stuff.  It's also safe to set if you're
    # using only serving fast clients with Unicorn + nginx.
    # Otherwise you _want_ nginx to buffer responses to slow
    # clients, really.
    # proxy_buffering off;

    # Try to serve static files from nginx, no point in making an
    # *application* server like Unicorn/Rainbows! serve static files.
    if (!-f $request_filename) {
        proxy_pass http://polonel;
        break;
    }
}

# Error pages
error_page 500 502 503 504 /500.html;
location = /500.html {
    root /home/chris/webapps/pyPolonel/Polonel/static/;
}
}
4

1 回答 1

1

可能调试工具栏的文件没有复制到/home/chris/webapps/pyPolonel/static/.

你不会忘记打电话manage.py collectstatic吗?如果您不知道它是什么,请阅读有关staticfiles app的信息。

在开发机器中,您可以从配置中删除location /static/location /media/:当settings.DEBUG == TrueDjango 的运行服务器将提供静态文件时。

在生产中总是使用staticfiles.

于 2013-11-07T05:34:47.357 回答