0

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;
        }
4

1 回答 1

0

我已经解决了这个问题,我们需要确保

location /nginx_status {
                stub_status on;
                allow 127.0.0.1;
                allow <pvt IP>/32;
                deny all;
        } 

块在服务器块内。执行此操作并重新启动 nginx

于 2018-03-22T14:03:56.630 回答