【发布时间】:2014-10-18 12:36:57
【问题描述】:
我正在尝试使用 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 如下:
$ 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 上运行 curl 时,我得到了 <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 保持不动,好像没有任何请求发送给它。
有什么想法吗?
更新:
我运行 gunicor: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"
【问题讨论】:
标签: python django curl nginx gunicorn