Explorar el Código

Fixed config sample for Nginx

Simon Kurowski hace 7 años
padre
commit
c4d3b623e8
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      telegraf/content.md

+ 2 - 2
telegraf/content.md

@@ -113,8 +113,8 @@ Create an `nginx_status.conf` configuration file to expose metric data:
 server {
     listen 8090;
     location /nginx_status {
-        stub_status on;
-        access_log on;
+        stub_status;
+        access_log off;
     }
 }
 ```