|
import multiprocessing
|
|
|
|
workers = 1 # multiprocessing.cpu_count() # * 2 + 1
|
|
bind = 'unix:flaskrest.sock'
|
|
umask = 0o007
|
|
reload = False
|
|
|
|
#logging
|
|
accesslog = '-'
|
|
errorlog = '-'
|
|
# accesslog = 'gunicorn.log'
|
|
# errorlog = 'gunicorn.error.log'
|
|
# capture_output = True |