1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
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.cache_classes = true
11 # Full error reports are disabled and caching is turned on
12 config.consider_all_requests_local = false
13 config.action_controller.perform_caching = true
15 # Disable Rails's static asset server (Apache or nginx will already do this)
16 config.public_file_server.enabled = false
18 # Compress JavaScripts and CSS
19 config.assets.compress = true
21 # Don't fallback to assets pipeline if a precompiled asset is missed
22 config.assets.compile = false
24 # Generate digests for assets URLs
25 config.assets.digest = true
27 # Defaults to Rails.root.join("public/assets")
28 # config.assets.manifest = YOUR_PATH
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
34 # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
35 # config.force_ssl = true
37 # See everything in the log (default is :info)
38 # config.log_level = :debug
40 # Use a different logger for distributed setups
41 # config.logger = SyslogLogger.new
43 # Use a different cache store in production
44 # config.cache_store = :mem_cache_store
46 # Enable serving of images, stylesheets, and JavaScripts from an asset server
47 # config.action_controller.asset_host = "http://assets.example.com"
49 # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
50 # config.assets.precompile += %w( search.js )
52 # Disable delivery errors, bad email addresses will be ignored
53 # config.action_mailer.raise_delivery_errors = false
54 # config.action_mailer.perform_deliveries = true
56 # Enable threaded mode
59 # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
60 # the I18n.default_locale when a translation can not be found)
61 config.i18n.fallbacks = true
63 # Send deprecation notices to registered listeners
64 config.active_support.deprecation = :notify
66 config.log_level = :info