10 lines
170 B
Python
10 lines
170 B
Python
|
import multiprocessing
|
||
|
|
||
|
workers = multiprocessing.cpu_count() # * 2 + 1
|
||
|
bind = 'unix:flaskrest.sock'
|
||
|
umask = 0o007
|
||
|
reload = False
|
||
|
|
||
|
#logging
|
||
|
accesslog = '-'
|
||
|
errorlog = '-'
|