From a5fe18a8ddd0075e85a2b8aa5ca995c26c47d8ec Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 4 May 2021 17:39:54 +0200 Subject: [PATCH] Remove NGINX access log from Supervisor log ouput (#134) --- mopidy/rootfs/etc/nginx/nginx.conf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mopidy/rootfs/etc/nginx/nginx.conf b/mopidy/rootfs/etc/nginx/nginx.conf index 5b96109..1769ab5 100644 --- a/mopidy/rootfs/etc/nginx/nginx.conf +++ b/mopidy/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 /proc/1/fd/1 homeassistant; + access_log off; client_max_body_size 4G; default_type application/octet-stream; gzip on;