config.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # While a lot of configuration in Sentry can be changed via the UI, for all
  2. # new-style config (as of 8.0) you can also declare values here in this file
  3. # to enforce defaults or to ensure they cannot be changed via the UI. For more
  4. # information see the Sentry documentation.
  5. ###############
  6. # Mail Server #
  7. ###############
  8. # mail.backend: 'smtp' # Use dummy if you want to disable email entirely
  9. # mail.host: 'localhost'
  10. # mail.port: 25
  11. # mail.username: ''
  12. # mail.password: ''
  13. # mail.use-tls: false
  14. # mail.use-ssl: false
  15. # The email address to send on behalf of
  16. # mail.from: 'root@localhost'
  17. # If you'd like to configure email replies, enable this.
  18. # mail.enable-replies: false
  19. # When email-replies are enabled, this value is used in the Reply-To header
  20. # mail.reply-hostname: ''
  21. # If you're using mailgun for inbound mail, set your API key and configure a
  22. # route to forward to /api/hooks/mailgun/inbound/
  23. # mail.mailgun-api-key: ''
  24. ################
  25. # File storage #
  26. ################
  27. # Uploaded media uses these `filestore` settings. The available
  28. # backends are either `filesystem` or `s3`.
  29. filestore.backend: 'filesystem'
  30. filestore.options:
  31. location: '/data/files'
  32. dsym.cache-path: '/data/dsym-cache'
  33. releasefile.cache-path: '/data/releasefile-cache'
  34. # filestore.backend: 's3'
  35. # filestore.options:
  36. # access_key: 'AKIXXXXXX'
  37. # secret_key: 'XXXXXXX'
  38. # bucket_name: 's3-bucket-name'
  39. ###################
  40. # System Settings #
  41. ###################
  42. # If this file ever becomes compromised, it's important to regenerate your a new key
  43. # Changing this value will result in all current sessions being invalidated.
  44. # A new key can be generated with `$ sentry config generate-secret-key`
  45. # system.secret-key: 'changeme'
  46. # The ``redis.clusters`` setting is used, unsurprisingly, to configure Redis
  47. # clusters. These clusters can be then referred to by name when configuring
  48. # backends such as the cache, digests, or TSDB backend.
  49. # redis.clusters:
  50. # default:
  51. # hosts:
  52. # 0:
  53. # host: 127.0.0.1
  54. # port: 6379