Procházet zdrojové kódy

Merge pull request #1326 from Code1110/master

Fixed config sample for Nginx
Tianon Gravi před 7 roky
rodič
revize
636e40371e
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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;
     }
 }
 ```