Django使用Nginx来提供静态内容

时间:2014-06-10 02:13:21

标签: python django deployment nginx web-deployment

我正在尝试配置nginx来为远程VPS上的django项目提供静态内容。我正在为我的nginx实例使用以下配置:

server {
    server_name myVPSip;

    access_log off;

    location /static/ {
        alias /usr/local/pcat/static/;
    }

    location / {
        proxy_pass http://127.0.0.1:8001;
        proxy_set_header X-Forwarded-Host $server_name;
        proxy_set_header X-Real-IP $remote_addr;
        add_header P3P 'CP="ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM NAV"';
    }
}

我在../nginx/sites-available/创建了配置文件,并将其链接到/sites-enabled/,然后重新启动了nginx,但是当我点击myip:8001/static时,我收到了django 404。

1 个答案:

答案 0 :(得分:0)

您不应该123.123.123.123:8001访问您的网站,因为这是django正在使用的端口。您应该访问运行nginx的123.123.123.123(即端口80)。