From 1d8a40eb93a6d55d8412b4c206aee30202a65f29 Mon Sep 17 00:00:00 2001 From: zhengxie Date: Wed, 16 May 2018 10:21:57 +0800 Subject: [PATCH] [scripts] Disable seahub gunicorn access log --- scripts/seahub.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/seahub.conf b/scripts/seahub.conf index ca9c41c..2183e82 100644 --- a/scripts/seahub.conf +++ b/scripts/seahub.conf @@ -7,6 +7,9 @@ workers = 5 runtime_dir = os.path.dirname(__file__) pidfile = os.path.join(runtime_dir, 'seahub.pid') errorlog = os.path.join(runtime_dir, 'error.log') -accesslog = os.path.join(runtime_dir, 'access.log') + +# disable access log +#accesslog = os.path.join(runtime_dir, 'access.log') + # for file upload, we need a longer timeout value (default is only 30s, too short) timeout = 1200