开启debug 模式,需要重新编译 nginx。 只要在编译的时候给 nginx 加一个选项就够了。 $./configure--with-debug 复制代码 具体的编译参数可以用nginx -V查到。 调试的详细日志我们还是放到 error_log 中,例如: error_log/usr/local/var/log/nginx/error.logdebug; 复制代码 使用sudo nginx -s reload重启 nginx...