diff --git a/README.md b/README.md index 78ed926..39c7dfe 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ You can visit now http://sentry.mydomain.com (assuming ``sentry.mydomain.com`` is mapped to your docker host) and login with default credentials (username ``admin`` and password ``admin``) and create your first team and project. -Your sqlite database file and gunicorn logs are available in ``/tmp/sentry`` directory. +Your sqlite database file and web workers logs are available in ``/tmp/sentry`` directory. ## Contributing @@ -219,7 +219,7 @@ SENTRY_REDIS_HOST | SENTRY_REDIS_PORT | | int | 6379 | SENTRY_WEB_HOST | SENTRY_WEB_HOST | | 0.0.0.0 | SENTRY_WEB_PORT | SENTRY_WEB_PORT | int | 9000 | -SENTRY_WORKERS | SENTRY_WEB_OPTIONS['workers'] | int | 3 | the number of gunicorn workers +SENTRY_WORKERS | SENTRY_WEB_OPTIONS['workers'] | int | 3 | the number of sentry web workers SENTRY_USE_REDIS_BUFFERS | | bool | False | SENTRY_REDIS_BUFFERS | SENTRY_REDIS_OPTIONS['hosts']* | list | ``:`` | comma separated list of redis hosts (``host1:port1,host2:port2,...``) SENTRY_USE_REDIS_TSDB | | bool | False | diff --git a/requirements.txt b/requirements.txt index 5552a8a..6930198 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ django-redis==4.3.0 hiredis==0.2.0 # sentry -sentry[postgres]==8.0.6 +sentry[postgres]==8.2.3 # ldap user store django-auth-ldap==1.2.7 diff --git a/sentry_docker_conf.py b/sentry_docker_conf.py index 82af71b..b5e4e8f 100644 --- a/sentry_docker_conf.py +++ b/sentry_docker_conf.py @@ -122,11 +122,11 @@ def nydus_config(from_env_var): SENTRY_WEB_HOST = config('SENTRY_WEB_HOST', default='0.0.0.0') SENTRY_WEB_PORT = config('SENTRY_WEB_PORT', default=9000, cast=int) SENTRY_WEB_OPTIONS = { - 'workers': config('SENTRY_WORKERS', default=3, cast=int), # the number of gunicorn workers + 'workers': config('SENTRY_WORKERS', default=3, cast=int), # the number of sentry web workers 'limit_request_line': 0, # required for raven-js 'secure_scheme_headers': {'X-FORWARDED-PROTO': 'https'}, - 'errorlog' : os.path.join(DATA_DIR, 'gunicorn_error.log'), - 'accesslog' : os.path.join(DATA_DIR, 'gunicorn_access.log'), + 'errorlog' : os.path.join(DATA_DIR, 'sentry_web_error.log'), + 'accesslog' : os.path.join(DATA_DIR, 'sentry_web_access.log'), } # allows JavaScript clients to submit cross-domain error reports. Useful for local development