You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
4.8 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. Rails.application.configure do
  2. # Settings specified here will take precedence over those in config/application.rb.
  3. # Code is not reloaded between requests.
  4. config.cache_classes = true
  5. # Eager load code on boot. This eager loads most of Rails and
  6. # your application in memory, allowing both threaded web servers
  7. # and those relying on copy on write to perform better.
  8. # Rake tasks automatically ignore this option for performance.
  9. config.eager_load = true
  10. # Full error reports are disabled and caching is turned on.
  11. config.consider_all_requests_local = false
  12. config.action_controller.perform_caching = true
  13. config.action_controller.asset_host = ENV['CDN_HOST'] if ENV['CDN_HOST'].present?
  14. # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
  15. # or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
  16. # config.require_master_key = true
  17. # Disable serving static files from the `/public` folder by default since
  18. # Apache or NGINX already handles this.
  19. config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
  20. ActiveSupport::Logger.new(STDOUT).tap do |logger|
  21. logger.formatter = config.log_formatter
  22. config.logger = ActiveSupport::TaggedLogging.new(logger)
  23. end
  24. # Compress JavaScripts and CSS.
  25. # config.assets.js_compressor = Uglifier.new(mangle: false)
  26. # config.assets.css_compressor = :sass
  27. # Do not fallback to assets pipeline if a precompiled asset is missed.
  28. config.assets.compile = false
  29. # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
  30. # Specifies the header that your server uses for sending files.
  31. # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
  32. config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
  33. # Allow to specify public IP of reverse proxy if it's needed
  34. config.action_dispatch.trusted_proxies = ENV['TRUSTED_PROXY_IP'].split.map { |item| IPAddr.new(item) } if ENV['TRUSTED_PROXY_IP'].present?
  35. config.force_ssl = true
  36. config.ssl_options = {
  37. redirect: {
  38. exclude: -> request { request.path.start_with?('/health') || request.headers["Host"].end_with?('.onion') }
  39. }
  40. }
  41. # Use the lowest log level to ensure availability of diagnostic information
  42. # when problems arise.
  43. config.log_level = ENV.fetch('RAILS_LOG_LEVEL', 'info').to_sym
  44. # Prepend all log lines with the following tags.
  45. config.log_tags = [:request_id]
  46. # Use a different cache store in production.
  47. config.cache_store = :redis_cache_store, REDIS_CACHE_PARAMS
  48. # Ignore bad email addresses and do not raise email delivery errors.
  49. # Set this to true and configure the email server for immediate delivery to raise delivery errors.
  50. # config.action_mailer.raise_delivery_errors = false
  51. # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
  52. # English when a translation cannot be found).
  53. config.i18n.fallbacks = [:en]
  54. # Send deprecation notices to registered listeners.
  55. config.active_support.deprecation = :notify
  56. # Use default logging formatter so that PID and timestamp are not suppressed.
  57. config.log_formatter = ::Logger::Formatter.new
  58. # Better log formatting
  59. config.lograge.enabled = true
  60. config.lograge.custom_payload do |controller|
  61. if controller.respond_to?(:signed_request?) && controller.signed_request?
  62. { key: controller.signature_key_id }
  63. end
  64. end
  65. # Do not dump schema after migrations.
  66. config.active_record.dump_schema_after_migration = false
  67. config.action_mailer.perform_caching = false
  68. # E-mails
  69. config.action_mailer.default_options = {
  70. from: ENV.fetch('SMTP_FROM_ADDRESS', 'notifications@localhost'),
  71. reply_to: ENV['SMTP_REPLY_TO']
  72. }
  73. config.action_mailer.smtp_settings = {
  74. :port => ENV['SMTP_PORT'],
  75. :address => ENV['SMTP_SERVER'],
  76. :user_name => ENV['SMTP_LOGIN'].presence,
  77. :password => ENV['SMTP_PASSWORD'].presence,
  78. :domain => ENV['SMTP_DOMAIN'] || ENV['LOCAL_DOMAIN'],
  79. :authentication => ENV['SMTP_AUTH_METHOD'] == 'none' ? nil : ENV['SMTP_AUTH_METHOD'] || :plain,
  80. :ca_file => ENV['SMTP_CA_FILE'].presence,
  81. :openssl_verify_mode => ENV['SMTP_OPENSSL_VERIFY_MODE'],
  82. :enable_starttls_auto => ENV['SMTP_ENABLE_STARTTLS_AUTO'] || true,
  83. :tls => ENV['SMTP_TLS'].presence,
  84. :ssl => ENV['SMTP_SSL'].presence,
  85. }
  86. config.action_mailer.delivery_method = ENV.fetch('SMTP_DELIVERY_METHOD', 'smtp').to_sym
  87. config.action_dispatch.default_headers = {
  88. 'Server' => 'Mastodon',
  89. 'X-Frame-Options' => 'DENY',
  90. 'X-Content-Type-Options' => 'nosniff',
  91. 'X-XSS-Protection' => '1; mode=block',
  92. }
  93. config.x.otp_secret = ENV.fetch('OTP_SECRET')
  94. end