Django + uwsgi + nginx + CentOS 7:8001端口连接被拒绝

时间:2015-04-09 12:42:55

标签: python linux django nginx uwsgi

Django + uwsgi + nginx + CentOS 7:8001端口连接被拒绝

当我尝试转到http://domain.com:8000

时,我收到了http 520错误

nginx.conf

    upstream django {
        # connect to this socket
        # server unix:///tmp/uwsgi.sock;    # for a file socket
        server 127.0.0.1:8001;      # for a web port socket

        }

    server {
        # the port your site will be served on
        listen      8000;
        # the domain name it will serve for
        server_name domain.com;   # substitute your machine's IP address or FQDN
        #root /home/mysite;
        charset     utf-8;

        #Max upload size
        client_max_body_size 75M;   # adjust to taste


        # Finally, send all non-media requests to the Django server.
        location / {
            uwsgi_pass  django;
            include     /home/mysite/uwsgi_params; # or the uwsgi_params you installed manually
            }


        }
/var/log/nginx/error.log

上的

错误消息

2015/04/09 12:28:07 [error] 23235#0: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 118.131.206.235, server: domain.com, request: "GET / HTTP/1.1", upstream: "uwsgi://127.0.0.1:8001", host: "domain.com:8000"
2015/04/09 12:28:08 [error] 23235#0: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 118.131.206.235, server: domain.com, request: "GET /favicon.ico HTTP/1.1", upstream: "uwsgi://127.0.0.1:8001", host: "domain.com:8000"

我已经尝试了一切,但找不到任何线索,它给了我http 502错误。

1 个答案:

答案 0 :(得分:0)

SELinux默认情况下可能会阻止此类连接。

您需要检查logfile /var/log/audit/audit.log以确定它。

或者使用以下命令暂停SELinux:

setenforce 0