我正在使用Nginx和Gunicorn配置Django项目。
当我在Nginx服务器中访问我的端口gunicorn mysite.wsgi:application --bind=127.0.0.1:8001
时,我在错误日志文件中得到以下错误;
2014/05/30 11:59:42 [crit] 4075#0: *6 connect()到127.0.0.1:8001失败(13:权限被拒绝)当连接到上游,客户端:127.0.0.1,服务器:localhost,请求:"GET / HTTP/1.1",上游:
"http://127.0.0.1:8001/"
,主机:"localhost:8080"
下面是我的nginx.conf
文件的内容;
server {
listen 8080;
server_name localhost;
access_log /var/log/nginx/example.log;
error_log /var/log/nginx/example.error.log;
location / {
proxy_pass http://127.0.0.1:8001;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
}
}
在HTML页面中,我得到502 Bad Gateway
。
我犯了什么错误?