status.conf.j2 275 B

1234567891011121314
  1. {% if ansible_controlled is defined and ansible_controlled != "" %}
  2. #
  3. # {{ ansible_controlled }}
  4. #
  5. {% endif %}
  6. server {
  7. server_name localhost;
  8. location /nginx_status {
  9. stub_status on;
  10. access_log off;
  11. allow 127.0.0.1;
  12. deny all;
  13. }
  14. }