From 051c209564c075a35e87434c1435701124ac3717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Will=20=E4=BF=9D=E5=93=A5?= Date: Fri, 18 Nov 2022 21:34:00 +0800 Subject: [PATCH] Fix the accessLogParamsDefault issue This fixes #409 --- src/nginxconfig/util/logging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nginxconfig/util/logging.js b/src/nginxconfig/util/logging.js index 4709121..5b493d7 100644 --- a/src/nginxconfig/util/logging.js +++ b/src/nginxconfig/util/logging.js @@ -25,7 +25,7 @@ THE SOFTWARE. */ export const accessLogPathDefault = '/var/log/nginx/access.log'; -export const accessLogParamsDefault = 'buffer=512k flush=1m'; +export const accessLogParamsDefault = 'combined buffer=512k flush=1m'; export const errorLogPathDefault = '/var/log/nginx/error.log'; export const errorLogPathDisabled = '/dev/null';