From a836477f9f6c55d967d8726b2d927175ffc1dbec Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 4 May 2021 15:06:00 +0200 Subject: [PATCH] Remove NGINX access log from Supervisor log ouput --- bookstack/rootfs/etc/nginx/nginx.conf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bookstack/rootfs/etc/nginx/nginx.conf b/bookstack/rootfs/etc/nginx/nginx.conf index b19a3c7..eba0baf 100644 --- a/bookstack/rootfs/etc/nginx/nginx.conf +++ b/bookstack/rootfs/etc/nginx/nginx.conf @@ -24,11 +24,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;