From 5dd77e2c76dad20acad751fc86fcf9a4b0f02a6f Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 12 Aug 2021 00:49:20 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Less=20logging=20by=20removing?= =?UTF-8?q?=20access=20log=20from=20log=20ouput=20(#185)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glances/rootfs/etc/nginx/nginx.conf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/glances/rootfs/etc/nginx/nginx.conf b/glances/rootfs/etc/nginx/nginx.conf index e22552a..b8c810f 100644 --- a/glances/rootfs/etc/nginx/nginx.conf +++ b/glances/rootfs/etc/nginx/nginx.conf @@ -27,11 +27,7 @@ events { http { include /etc/nginx/includes/mime.types; - log_format homeassistant '[$time_local] $status ' - '$http_x_forwarded_for($remote_addr) ' - '$request ($http_user_agent)'; - - access_log /dev/stdout homeassistant; + access_log off; client_max_body_size 4G; default_type application/octet-stream; gzip on;