客服连接失败,等待3秒后重试

dreampaowj 2020-1-2 2631

1:php.ini 设置了safe_mode = Off

2: disable_functions 设置为空

3: SELinux是关闭的

4: iptables没有开启

5: socket端口和站点的端口都是8430

6: php-fpm 设置了 request_terminate_timeout = 864000

7: nginx设置:

    server {

        listen       8430;

        server_name  192.168.99.85;

        location / {

            root        /home/use/application/welive;

            index   index.html index.htm index.php;

        }

        location ~ \.php$ {

            root           html;

            fastcgi_pass   127.0.0.1:9000;

            fastcgi_index  index.php;

            fastcgi_param SCRIPT_FILENAME /home/user/application/welive$fastcgi_script_name;

            include        fastcgi_params;

        }

    }

New Post (1)
Back
Create New Thread