mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-08-02 07:43:09 +00:00
16 lines
362 B
Plaintext
16 lines
362 B
Plaintext
import os
|
|
|
|
daemon = True
|
|
workers = 5
|
|
|
|
# Logging
|
|
runtime_dir = os.path.dirname(__file__)
|
|
pidfile = os.path.join(runtime_dir, 'seahub.pid')
|
|
errorlog = os.path.join(runtime_dir, 'error.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
|