status.conf.j2 164 B

123456789
  1. server {
  2. server_name localhost;
  3. location /nginx_status {
  4. stub_status on;
  5. access_log off;
  6. allow 127.0.0.1;
  7. deny all;
  8. }
  9. }