在nginx安装时添加

--with-http_stub_status_module

 

 

配置:

  进入nginx.conf

  新建一个location 模块

  location /status {

    stub_status on;

    access_log off;

    allow 174.16.10.110;

    deny all;

  }

  

 

相关文章:

  • 2021-07-05
  • 2022-01-14
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2021-09-02
  • 2022-12-23
猜你喜欢
  • 2021-10-25
  • 2022-12-23
  • 2022-01-03
  • 2021-10-30
  • 2021-07-27
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案