Django CMS - >在gunicorn上传文件

时间:2015-03-22 21:24:34

标签: django nginx gunicorn django-cms

我上传文件ie.image时遇到问题。

我使用NGINX和gunicorn。 当我尝试上传时,我收到500错误。

我尝试了很多例子,但我真的不知道这是怎么回事。 也许这个问题很相似,但我不知道如何使用这个link

请帮忙。

我使用本教程创建服务器link。 这是控制台出错的图像: enter image description here enter image description here enter image description here 这是来自启动gunicorn的图像和调试选项: enter image description here

gunicorn_config.py

command = '/opt/myenv/bin/gunicorn'
pythonpath = '/opt/myenv/strona_tapicerska'
bind = '5.196.28.65:8001'
workers = 3
user = 'nobody'
来自/ etc / nginx / sites-available

文件

server {
        server_name 5.196.28.65;

        access_log off;

        location /static/ {
            root /opt/myenv/strona_tapicerska/static/;
        }

       location /media/ {
        root /opt/myenv/strona_tapicerska/media/;
           }


    location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js|mov) {
      access_log   off;                                                                                                              
      expires      30d;
    }

            client_max_body_size 25M;

    location /admin/media{

    root /opt/myenv/lib/python2.7/site-packages/django/contrib;}

            location / {
                    proxy_pass http://127.0.0.1:8001;
                    proxy_set_header Host $host;
                    proxy_set_header X-Real-IP $remote_addr;
                    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;


   add_header P3P 'CP="ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM NAV"';
        }
    }

0 个答案:

没有答案