File size: 452 Bytes
ef1ad9e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Number of worker processes for handling requests.

workers = 20


# The gunicorn worker class you are implementing.

worker_class = 'gunicorn_worker.ConfigurableWorker'


# The socket to bind. A string of the form: 'HOST', 'HOST:PORT', 'unix:PATH'.

bind = '0.0.0.0:80'


# Workers silent for more than this many seconds are killed and restarted.

timeout = 200


# Path to the application callable.

wsgi_app = 'app.main:app'