Nginx 服务器出现未知 500 内部服务器错误

Nginx 服务器出现未知 500 内部服务器错误

我在 DigitalOcean.com 机器上有几个网站,所有网站的配置或多或少都相同。但是当我添加新网站时,它给了我 500 内部错误。以下是文件:

upstream startup_server {
    server 127.0.0.1:9888 fail_timeout=0;

}


server {
    listen 80;
    listen [::]:80;


    root /home/django/startup;
    index index.html index.htm;

    client_max_body_size 4G;
    server_name pitchstartupidea.com www.pitchstartupidea.com;



    keepalive_timeout 5;

    location ~*  \.(jpg|jpeg|png|gif|ico|css|js|woff2|woff|ttf)$ {
        expires 365d;

    }



    # Your Django project's media files - amend as required
    location /media  {
        alias /home/django/startup/media/;
    }

    # your Django project's static files - amend as required
    location static/static-only {
        alias /home/django/startup/static-only/; 

    }
    # Django static images
    location /static/images {
        alias /home/django/startup/static/static-only/images/;
    }


    # Proxy the static assests for the Django Admin panel
    location /static/admin {
       alias /usr/lib/python2.7/dist-packages/django/contrib/admin/static/admin;
    }

    location / {


        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://startup_server;
        proxy_connect_timeout 60s;

    }
}

我的 venv 位于/home/django/startup,我的项目 pys 位于/home/django/startup/pys。有人能告诉我我可能做错了什么吗?目前,我只是想用“gunicorn --bind pitchyourstartup.com:9888 pys.wsgi:application”让它在预生产环境中工作。Django 设置文件有 和ALLOWED_HOST = ['pitchyourstartup.com', 'www.pitchyourstartup.com']。当我尝试从本地计算机上的浏览器DEBUG = False访问它时,出现此错误。with pitchyourstartup.com:9888/admin

答案1

我不知道这是否相关,但它向我发出了有关中间件类的警告,因为我使用 MIDDLEWARE 设置了它,但在 1.8.15 中它可以与 MIDDLEWARE_CLASSES 一起使用。我修复了这个问题,它就正常工作了。我可以通过 pitchyourstartup.com:9888/admin 访问它。

相关内容