2016-02-11 22:54:57 +01:00
|
|
|
# While a lot of configuration in Sentry can be changed via the UI, for all
|
|
|
|
# new-style config (as of 8.0) you can also declare values here in this file
|
|
|
|
# to enforce defaults or to ensure they cannot be changed via the UI. For more
|
|
|
|
# information see the Sentry documentation.
|
2016-05-23 19:10:25 +02:00
|
|
|
|
|
|
|
###############
|
|
|
|
# Mail Server #
|
|
|
|
###############
|
|
|
|
|
|
|
|
# mail.backend: 'smtp' # Use dummy if you want to disable email entirely
|
2019-11-12 00:18:59 +01:00
|
|
|
mail.host: 'smtp'
|
2016-05-23 19:10:25 +02:00
|
|
|
# mail.port: 25
|
|
|
|
# mail.username: ''
|
|
|
|
# mail.password: ''
|
|
|
|
# mail.use-tls: false
|
|
|
|
# The email address to send on behalf of
|
|
|
|
# mail.from: 'root@localhost'
|
|
|
|
|
|
|
|
# If you'd like to configure email replies, enable this.
|
2019-11-12 00:18:59 +01:00
|
|
|
# mail.enable-replies: true
|
2016-05-23 19:10:25 +02:00
|
|
|
|
|
|
|
# When email-replies are enabled, this value is used in the Reply-To header
|
|
|
|
# mail.reply-hostname: ''
|
|
|
|
|
|
|
|
# If you're using mailgun for inbound mail, set your API key and configure a
|
|
|
|
# route to forward to /api/hooks/mailgun/inbound/
|
2019-11-12 00:18:59 +01:00
|
|
|
# Also don't forget to set `mail.enable-replies: true` above.
|
2016-05-23 19:10:25 +02:00
|
|
|
# mail.mailgun-api-key: ''
|
|
|
|
|
|
|
|
###################
|
|
|
|
# System Settings #
|
|
|
|
###################
|
|
|
|
|
|
|
|
# If this file ever becomes compromised, it's important to regenerate your a new key
|
|
|
|
# Changing this value will result in all current sessions being invalidated.
|
|
|
|
# A new key can be generated with `$ sentry config generate-secret-key`
|
2019-11-12 00:18:59 +01:00
|
|
|
system.secret-key: '!!changeme!!'
|
2016-05-23 19:10:25 +02:00
|
|
|
|
|
|
|
# The ``redis.clusters`` setting is used, unsurprisingly, to configure Redis
|
|
|
|
# clusters. These clusters can be then referred to by name when configuring
|
|
|
|
# backends such as the cache, digests, or TSDB backend.
|
|
|
|
# redis.clusters:
|
|
|
|
# default:
|
|
|
|
# hosts:
|
|
|
|
# 0:
|
|
|
|
# host: 127.0.0.1
|
|
|
|
# port: 6379
|
2016-11-07 18:12:32 +01:00
|
|
|
|
|
|
|
################
|
|
|
|
# File storage #
|
|
|
|
################
|
|
|
|
|
|
|
|
# Uploaded media uses these `filestore` settings. The available
|
|
|
|
# backends are either `filesystem` or `s3`.
|
|
|
|
|
2019-11-12 00:18:59 +01:00
|
|
|
filestore.backend: 'filesystem'
|
|
|
|
filestore.options:
|
|
|
|
location: '/var/lib/sentry/files'
|
2016-11-07 18:12:32 +01:00
|
|
|
|
|
|
|
# filestore.backend: 's3'
|
|
|
|
# filestore.options:
|
|
|
|
# access_key: 'AKIXXXXXX'
|
|
|
|
# secret_key: 'XXXXXXX'
|
|
|
|
# bucket_name: 's3-bucket-name'
|
2019-11-12 00:18:59 +01:00
|
|
|
|
|
|
|
system.internal-url-prefix: 'http://web:9000'
|
|
|
|
symbolicator.enabled: true
|
|
|
|
symbolicator.options:
|
|
|
|
url: "http://symbolicator:3021"
|
2019-11-27 23:19:08 +01:00
|
|
|
|
|
|
|
transaction-events.force-disable-internal-project: true
|