diff --git a/sentry.conf.py b/sentry.conf.py index 3a8dde4..d02e0d8 100644 --- a/sentry.conf.py +++ b/sentry.conf.py @@ -259,11 +259,16 @@ if env('SENTRY_USE_SSL', False): SENTRY_WEB_HOST = '0.0.0.0' SENTRY_WEB_PORT = 9000 SENTRY_WEB_OPTIONS = { + 'http': '%s:%s' % (SENTRY_WEB_HOST, SENTRY_WEB_PORT), + 'protocol': 'uwsgi', + # This is need to prevent https://git.io/fj7Lw + 'uwsgi-socket': None, + 'http-keepalive': True, + 'memory-report': False, # 'workers': 3, # the number of web workers } - ########## # Docker # ##########