gpt4 book ai didi

php - nginx 错误-客户端在等待请求时关闭连接,客户端 : x. x.x.x,服务器 : 0. 0.0.0:80

转载 作者:行者123 更新时间:2023-12-04 17:32:53 26 4
gpt4 key购买 nike

server {
listen 80;
server_name xx.cn;
index index.php index.html index.htm;
root /data/www_deploy/xx/backend/web;

location ~* /\. {
deny all;
}

location / {
try_files $uri /index.php?$args;
}
location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
client_max_body_size 512m;
}

nginx 错误显示客户端在等待请求时关闭了连接,客户端:x.x.x.x,服务器:0.0.0.0:80 当通过客户端浏览器访问域时

错误显示

正在连接xx.cn (xx.cn)|x.x.x.x|:80...已连接。已发送 HTTP 请求,正在等待响应... 500 Internal Server Error2019-09-13 19:48:18 错误 500:内部服务器错误。

在服务器上通过wget xx.cn

请问如何处理?

最佳答案

如果您正在调用的 index.php(或任何其他脚本)未正确退出,例如抛出异常,则通常会发生这种情况。

查看错误日志

关于php - nginx 错误-客户端在等待请求时关闭连接,客户端 : x. x.x.x,服务器 : 0. 0.0.0:80,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57931207/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com