NginxとGunicornでDjangoプロジェクトを構成しています。
gunicorn mysite.wsgi:application --bind=127.0.0.1:8001
Nginxサーバーのポートにアクセスしているときに、エラーログファイルに次のエラーが表示されます。
2014/05/30 11:59:42 [crit] 4075#0:* 6 connect()to 127.0.0.1:8001 failed(13:Permission denied)while connecting to upstream、client:127.0.0.1、server: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
ます。
私はどんな間違いをしていますか?