123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- require "active_support/core_ext/integer/time"
- Rails.application.configure do
- # Settings specified here will take precedence over those in config/application.rb.
- # Code is not reloaded between requests.
- config.enable_reloading = false
- # Eager load code on boot for better performance and memory savings (ignored by Rake tasks).
- config.eager_load = true
- # Full error reports are disabled.
- config.consider_all_requests_local = false
- # Turn on fragment caching in view templates.
- config.action_controller.perform_caching = true
- # Cache assets for far-future expiry since they are all digest stamped.
- config.public_file_server.headers = { "cache-control" => "public, max-age=#{1.year.to_i}" }
- # Disable serving static files from `public/`, relying on NGINX/Apache to do so instead.
- # This disables the ActionDispatch::Static middleware.
- config.public_file_server.enabled = false
- # Enable serving of images, stylesheets, and JavaScripts from an asset server.
- # config.asset_host = "http://assets.example.com"
- # Assume all access to the app is happening through a SSL-terminating reverse proxy.
- # config.assume_ssl = true
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
- # config.force_ssl = true
- # Skip http-to-https redirect for the default health check endpoint.
- # config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
- # Log to STDOUT with the current request id as a default log tag.
- # config.log_tags = [ :request_id ]
- config.logger = ActiveSupport::TaggedLogging.logger(STDOUT)
- # Change to "debug" to log everything (including potentially personally-identifiable information!)
- config.log_level = :fatal
- # Prevent health checks from clogging up the logs.
- config.silence_healthcheck_path = "/up"
- # Don't log any deprecations.
- config.active_support.report_deprecations = false
- # Use a different cache store in production.
- config.cache_store = :redis_cache_store, {
- url: ENV['REDIS_URL'],
- connect_timeout: 30, # Defaults to 20 seconds
- read_timeout: 0.2, # Defaults to 1 second
- write_timeout: 0.2, # Defaults to 1 second
- reconnect_attempts: 1, # Defaults to 0
- error_handler: -> (method:, returning:, exception:) {
- puts "NO REDIS DETECTED"
- }
- }
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
- # the I18n.default_locale when a translation cannot be found).
- config.i18n.fallbacks = true
- # Do not dump schema after migrations.
- config.active_record.dump_schema_after_migration = false
- # Only use :id for inspections in production.
- config.active_record.attributes_for_inspect = [ :id ]
- # Enable DNS rebinding protection and other `Host` header attacks.
- # config.hosts = [
- # "example.com", # Allow requests from example.com
- # /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
- # ]
- #
- # Skip DNS rebinding protection for the default health check endpoint.
- # config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
- end
|