Files
notifications-admin/gunicorn_config.py
T

19 lines
450 B
Python
Raw Normal View History

2018-06-25 11:23:51 +01:00
import os
2017-09-22 15:41:41 +01:00
import sys
import traceback
2019-10-23 13:02:41 +01:00
import gunicorn
2018-06-25 11:23:51 +01:00
workers = 5
worker_class = "eventlet"
errorlog = "/home/vcap/logs/gunicorn_error.log"
bind = "0.0.0.0:{}".format(os.getenv("PORT"))
disable_redirect_access_to_syslog = True
2019-10-23 13:02:41 +01:00
gunicorn.SERVER_SOFTWARE = 'None'
2018-06-25 11:23:51 +01:00
2017-09-22 15:41:41 +01:00
def worker_abort(worker):
worker.log.info("worker received ABORT")
for stack in sys._current_frames().values():
2017-09-25 16:24:11 +01:00
worker.log.error(''.join(traceback.format_stack(stack)))