1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-13 13:51:53 +00:00

Merge pull request #152 from haiwen/seahub_access_log

[scripts] Disable seahub gunicorn access log
This commit is contained in:
Daniel Pan
2018-05-16 10:34:43 +08:00
committed by GitHub

View File

@@ -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