From 600ed8e772b2124d4b19ca583d58cc9ed41a0309 Mon Sep 17 00:00:00 2001 From: casjay Date: Sat, 17 Aug 2024 16:09:31 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rootfs/tmp/etc/nginx/nginx.conf --- rootfs/tmp/etc/nginx/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootfs/tmp/etc/nginx/nginx.conf b/rootfs/tmp/etc/nginx/nginx.conf index d301a21..2a1ee81 100644 --- a/rootfs/tmp/etc/nginx/nginx.conf +++ b/rootfs/tmp/etc/nginx/nginx.conf @@ -15,8 +15,7 @@ http { gzip on; map $http_upgrade $connection_upgrade { default upgrade; '' close; } disable_symlinks off; - log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; - access_log REPLACE_LOG_DIR/access.log main; + access_log REPLACE_LOG_DIR/access.log combined; server { listen 0.0.0.0:80 default_server; @@ -88,4 +87,5 @@ http { include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; include /etc/nginx/vhosts.d/*.conf; + } }