(13:权限被拒绝)连接到上游时:[nginx]
我正在使用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()到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。
我在做什么错?
回答:
我遇到了类似的问题,使Fedora 20,Nginx,Node.js和Ghost(博客)正常工作。原来我的问题是由于SELinux造成的。
这应该可以解决问题:
setsebool -P httpd_can_network_connect 1
我检查了SELinux日志中的错误:
sudo cat /var/log/audit/audit.log | grep nginx | grep denied
并发现运行以下命令解决了我的问题:
sudo cat /var/log/audit/audit.log | grep nginx | grep denied | audit2allow -M mynginxsudo semodule -i mynginx.pp
以上是 (13:权限被拒绝)连接到上游时:[nginx] 的全部内容, 来源链接: utcz.com/qa/419972.html