debug_points 指令 语法:debug_points abort | stop; 默认值:— 上下文:main 该指令用于 nginx 调试,可用来帮助用户调试 nginx。debug_points 接收2个参数,分别为:stop 和 abort。 nginx 在一些关键的错误逻辑中设置了调试点。如果设置为 stop,那么 nginx 的代码执行到这些调试点时,会发出 SIGSTOP 信号。如果设...
语法:debug_points [stop | abort] (5)仅对指定的客户端输出debug级别的日志 语法:debug_connection [IP | CIDR] 这个配置项实际上属于事件类配置,因此,它必须放在events {...}中才有效。它的值可以是IP地址或CIDR地址,例如: events { debug_connection 10.224.66.14; debug_connection 10.224.57.0/24;} 这样...