From 5ecbe5afa62ce6d38fd8a0ee6e6b4ffdfc2fa44c Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Wed, 18 Sep 2024 17:24:56 -0700 Subject: [PATCH] fix logging paths --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index a6112ac..5ea82b1 100644 --- a/nginx.conf +++ b/nginx.conf @@ -16,8 +16,8 @@ http { default_type application/octet-stream; # logging - access_log access.log; - error_log error.log; + access_log /var/log/nginx/access.log main; + error_log /var/log/nginx/error.log warn; # gzip gzip on;