Nginx amplify报告了centos 7上的系统指标,但它无法从访问和错误日志中获取指标。这两个文件都具有nginx读写权限。相同的设置在Ubuntu中运行良好。有人可以指导我完成这件事。
这是nginx_amplify的块
location /nginx_status {
stub_status on;
allow 127.0.0.1;
allow <pvt IP>/32;
deny all;
}
答案 0 :(得分:0)
我得到了解决方法,我们需要确保
location /nginx_status {
stub_status on;
allow 127.0.0.1;
allow <pvt IP>/32;
deny all;
}
块在服务器块内。这样做并重新启动nginx