【发布时间】:2014-10-31 06:17:34
【问题描述】:
我用 nginx 和 gunicorn 托管了 django。我收到以下错误。
# 1 connect() to 127.0.0.1:8001 failed (13: Permission denied) while connecting to upstream, client: 106.77.61.123, server: localhost, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8001/favicon.ico", host: "<domainname>
[相同的配置在我的本地 centos 机器上运行]
但在 VPS 托管环境 (vps) 上:
我正在使用用户名为“ftpuser1”的centos-7(nginx.conf中的用户名是“ftpuser1”)。
我正在使用用户“ftpuser1”运行 nginx
/var/cache/nginx 的所有者是“ftpuser1”,具有 777 递归权限
源代码路径的所有者也是“ftpuser1”,具有777递归权限
这是我的 /etc/nginx/conf.d/default.config 配置文件内容:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /home/ftpuser1/donation/templates;
index home.html;
proxy_pass http://127.0.0.1:8001;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#} }
谁能帮我解决这个问题?
【问题讨论】:
-
用
netstat -tulpn | grep 8001检查那个端口上是否有其他东西在运行