mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
Merge #1888
1888: Use threads in gunicorn rather than workers/processes r=mergify[bot] a=nextgens ## What type of PR? enhancement ## What does this PR do? This ensures that we share the auth-cache... will enable memory savings and may improve performances when a higher number of cores is available "smarter default" Co-authored-by: Florent Daigniere <nextgens@freenetproject.org>
This commit is contained in:
commit
9a4c6385e5
@ -19,7 +19,8 @@ if account is not None and domain is not None and password is not None:
|
|||||||
os.system("flask mailu admin %s %s '%s' --mode %s" % (account, domain, password, mode))
|
os.system("flask mailu admin %s %s '%s' --mode %s" % (account, domain, password, mode))
|
||||||
|
|
||||||
start_command="".join([
|
start_command="".join([
|
||||||
"gunicorn -w 4 -b :80 ",
|
"gunicorn --threads ", str(os.cpu_count()),
|
||||||
|
" -b :80 ",
|
||||||
"--access-logfile - " if (log.root.level<=log.INFO) else "",
|
"--access-logfile - " if (log.root.level<=log.INFO) else "",
|
||||||
"--error-logfile - ",
|
"--error-logfile - ",
|
||||||
"--preload ",
|
"--preload ",
|
||||||
|
Loading…
Reference in New Issue
Block a user