mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
12 lines
338 B
Text
12 lines
338 B
Text
import os
|
|
|
|
daemon = True
|
|
workers = 3
|
|
|
|
# Logging
|
|
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')
|
|
# for file upload, we need a longer timeout value (default is only 30s, too short)
|
|
timeout = 1200
|