nginx显示502错误的网关

问题描述 投票:0回答:1

502网关错误。错误日志和nginx的配置如下。那有什么问题吗?

[错误] 7660#0:* 10 connect()失败(111:连接被拒绝)连接到上游,客户端:40.83.126.181,服务器:127.0.0.1,请求:“ GET / HTTP / 1.1”,上游:“ fastcgi://127.0.0.1:9000”,主机:“ www.mysite.com”

nginx.conf:

worker_processes  1;

events {
    worker_connections  1024; 
}


http{

    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    keepalive_timeout  65;

    server {
        listen       80;
        server_name  127.0.0.1;

        location / {
            root   /www;
            index  index.html index.htm index.php;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        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;
        }

    }


    include vhost/*.conf; 
}

vhosts / home.conf:

server {
    listen       80;
    server_name  www.mysite.com
    #charset utf-8;
    access_log  /www/host.access.log;
    error_log   /www/error.log;
    root /www;
    index       index.php index.html index.htm;
    location / {
        if (!-e $request_filename) {
           rewrite  ^/(.*)$  /index.php/$1  last;
           break;
        }
    }
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
        expires 100d;
    }
    location ~ .*\.(js|css)?$ {
        expires 30d;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    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;
    }

}
nginx fastcgi
1个回答
0
投票

运行php-fpm并确保nginx和php-fpm在同一用户(组)下,并且问题已解决。

© www.soinside.com 2019 - 2024. All rights reserved.