# 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'