1 # frozen_string_literal: true
3 require "active_support/core_ext/integer/time"
5 Rails.application.configure do
6 # Settings specified here will take precedence over those in config/application.rb.
8 # Code is not reloaded between requests.
9 config.enable_reloading = false
11 # Eager load code on boot for better performance and memory savings (ignored by Rake tasks).
12 config.eager_load = true
14 # Full error reports are disabled.
15 config.consider_all_requests_local = false
17 # Turn on fragment caching in view templates.
18 config.action_controller.perform_caching = true
20 # Cache assets for far-future expiry since they are all digest stamped.
21 config.public_file_server.headers = { "cache-control" => "public, max-age=#{1.year.to_i}" }
23 # Enable serving of images, stylesheets, and JavaScripts from an asset server.
24 # config.asset_host = "http://assets.example.com"
26 # Store uploaded files on the local file system (see config/storage.yml for options).
27 config.active_storage.service = :local
29 # Assume all access to the app is happening through a SSL-terminating reverse proxy.
30 config.assume_ssl = true
32 # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
33 config.force_ssl = true
35 # Skip http-to-https redirect for the default health check endpoint.
36 # config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
38 # Log to STDOUT with the current request id as a default log tag.
39 config.log_tags = [:request_id]
40 config.logger = if Settings.key?(:log_path)
41 ActiveSupport::TaggedLogging.logger(Settings.log_path)
43 ActiveSupport::TaggedLogging.logger($stdout)
46 # Change to "debug" to log everything (including potentially personally-identifiable information!)
47 config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
49 # Prevent health checks from clogging up the logs.
50 config.silence_healthcheck_path = "/up"
52 # Don't log any deprecations.
53 config.active_support.report_deprecations = false
55 # Replace the default in-process memory cache store with a durable alternative.
56 # config.cache_store = :mem_cache_store
58 # Replace the default in-process and non-durable queuing backend for Active Job.
59 # config.active_job.queue_adapter = :resque
61 # Configure caching of static assets
62 config.action_controller.page_cache_directory = Rails.public_path
64 # Ignore bad email addresses and do not raise email delivery errors.
65 # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66 # config.action_mailer.raise_delivery_errors = false
68 # Set host to be used by links generated in mailer templates.
69 config.action_mailer.default_url_options = { :host => "example.com" }
71 # Specify outgoing SMTP server. Remember to add smtp/* credentials via rails credentials:edit.
72 # config.action_mailer.smtp_settings = {
73 # user_name: Rails.application.credentials.dig(:smtp, :user_name),
74 # password: Rails.application.credentials.dig(:smtp, :password),
75 # address: "smtp.example.com",
77 # authentication: :plain
80 # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
81 # the I18n.default_locale when a translation cannot be found).
82 config.i18n.fallbacks = true
84 # Do not dump schema after migrations.
85 config.active_record.dump_schema_after_migration = false unless Settings.status == "database_offline"
87 # Only use :id for inspections in production.
88 config.active_record.attributes_for_inspect = [:id]
90 # Enable DNS rebinding protection and other `Host` header attacks.
92 # "example.com", # Allow requests from example.com
93 # /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
96 # Skip DNS rebinding protection for the default health check endpoint.
97 # config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
99 # Use delayed job to queue jobs in production.
100 config.active_job.queue_adapter = :delayed_job