Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 | ``<SENTRY_REDIS_HOST>:<SENTRY_REDIS_PORT>`` | comma separated list of redis hosts (``host1:port1,host2:port2,...``)
SENTRY_USE_REDIS_TSDB | | bool | False |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions sentry_docker_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down