使用Nginx和Gunicorn在Django中提供静态文件

时间:2019-09-13 05:42:39

标签: django nginx gunicorn

大家好,我正在尝试用gunicorn在Nginx上运行我的项目。我可以成功访问它,但是在提供静态文件时遇到问题。我完全理解manage.py如何收集静态作品,但我认为我在Nginx或settings.py的配置文件中缺少某些内容。希望你能帮助我。

enter image description here

Nginx conf:

server {
    listen 8080;
    #server_name _;

    location / {
        proxy_pass http://127.0.0.1:8000;
    }

    location /static/ {
        autoindex on;
        alias   /root/Desktop/halcyon---recruitment-system/staticfiles/;
    }
}

我的项目静态路径为:/ root / Desktop / halcyon --- recruitment-system / staticfiles /

0 个答案:

没有答案