django用gunicorn和nginx运行:400个不好的请求

时间:2014-10-18 12:36:57

标签: python django curl nginx gunicorn

我尝试使用nginx和gunicorn部署我的django 1.6版项目。在我的服务器中,我添加了我的项目nginx文件:

error_log /var/log/nginx/myproject-error.log;
access_log /var/log/nginx/myproject-access.log;
server {
       listen 80;
       server_name <domain_name>;
       root <path_to_my_root_project>;

       location /static/ {
           root <path_to_my_root_project>;
           expires max;
           add_header Pragma public;
          add_header Cache-Control "public, must-revalidate, proxy-revalidate";
      }

      location / {
          proxy_pass_header Server;
          proxy_set_header Host $http_host;
          proxy_redirect off;
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Schema $scheme;
          proxy_connect_timeout 10;
          proxy_read_timeout 10;

          proxy_pass http://localhost:8333/;
      }
      error_page 500 502 503 504 /static/50x.html;
}

在我的django设置文件中,我设置了静态路径:

# Static
STATIC_ROOT = BASE_DIR + '/static'
STATIC_URL = '/static/'

我的枪声如下:

$ gunicorn_django -b localhost:8333
!!!
!!! WARNING: This command is deprecated.
!!!
!!!     You should now run your application with the WSGI interface
!!!     installed with your project. Ex.:
!!!
!!!         gunicorn myproject.wsgi:application
!!!
!!!     See https://docs.djangoproject.com/en/1.5/howto/deployment/wsgi/gunicorn/
!!!     for more info.
!!!

因此,当我在服务器curl localhost上运行卷曲时,我得到<h1>Bad Request (400)</h1>并且日志不会比127.0.0.1 - - [18/Oct/2014:14:38:57 +0200] "GET / HTTP/1.1" 400 37 "-" "curl/7.26.0"

更进一步说明

枪炮停留不动,好像没有发出请求。

有什么想法吗?

更新 我经营着枪手:gunicorn myproject.wsgi -b localhost:8333 curl localhost会返回我的static / 50x.html错误页面。我在nginx日志中得到了这个:

2014/10/18 15:06:31 [error] 16037#0: *32 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: servername.local.fr, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8333/", host: "localhost"

1 个答案:

答案 0 :(得分:1)

这个告诉你该怎么做。

!!!     You should now run your application with the WSGI interface
!!!     installed with your project. Ex.:
!!!
!!!         gunicorn myproject.wsgi:application

NGINX工作正常,枪手没有收到您的请求。

到你的项目目录并使用适当的参数运行gunicorn,如下所述:http://docs.gunicorn.org/en/latest/run.html#gunicorn-django