11

这是我的 nginx 配置:

    server {
        listen 80;
        server_name localhost;

        keepalive_timeout 5;

        access_log /home/tunde/django-projects/mumu/nginx/access.log;
        error_log /home/tunde/django-projects/mumu/nginx/error.log;

        root /home/tunde/django-projects/mumu;

        location / {
            try_files $uri @proxy_to_app;
        }

        location @proxy_to_app {
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_redirect off;
            proxy_pass http://127.0.0.1:8000;
        }
    }

我的 settings.py 看起来像:

    import os
    settings_dir = os.path.dirname(__file__)
    PROJECT_ROOT = os.path.abspath(os.path.dirname(settings_dir))

    STATIC_ROOT = '/home/tunde/django-projects/mumu/STATIC/'
    STATIC_URL = '/static/'

    STATICFILES_DIRS = (
    os.path.join(PROJECT_ROOT, 'static/'),
    )

我的 supervisord.conf 文件如下所示:

[program: mumu]
command = /home/tunde/ENV1/bin/gunicorn -w 1 --bind=127.0.0.1:8000 mumu.wsgi:application
directory = /home/tunde/django-projects/mumu/
stdout_logfile= /home/tunde/django-projects/mumu/supervisor/logfile.log
stderr_logfile= /home/tunde/django-projects/mumu/supervisor/error.log
user = tunde

问题是没有提供静态文件,我不知道我做错了什么。/static/css/styles.css 之类的 url 返回 404。我们将不胜感激。

4

2 回答 2

21

您需要创建一个与您的 django 位置匹配的 nginx 位置块STATIC_URL。正如您配置的那样,nginx 还将静态资产请求转发到您的 django 应用程序。我猜您在 django 应用程序日志中看到 404 错误?您希望 nginx 处理这些请求,而不是 django。

location /static {
    alias /home/tunde/django-projects/mumu/STATIC/; 
}

请务必运行django admin 命令 collectstatic以确保将所有静态资产复制到STATIC_ROOT目录中。

于 2013-06-30T15:02:40.807 回答
1
location / {
    try_files $uri @proxy_to_app;
}

请更换$uri -> $request_uri

location / {
    try_files $request_uri @proxy_to_app;
}
于 2014-05-02T09:48:04.057 回答