Merge branch '8784-dir-listings'
[arvados.git] / services / api / config / environments / production.rb.example
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 Server::Application.configure do
6   # Settings specified here will take precedence over those in config/application.rb
7
8   # Code is not reloaded between requests
9   config.cache_classes = true
10
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
14
15   # Disable Rails's static asset server (Apache or nginx will already do this)
16   config.serve_static_files = false
17
18   # Compress JavaScripts and CSS
19   config.assets.compress = true
20
21   # Don't fallback to assets pipeline if a precompiled asset is missed
22   config.assets.compile = false
23
24   # Generate digests for assets URLs
25   config.assets.digest = true
26
27   # Defaults to Rails.root.join("public/assets")
28   # config.assets.manifest = YOUR_PATH
29
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
34   # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
35   # config.force_ssl = true
36
37   # See everything in the log (default is :info)
38   # config.log_level = :debug
39
40   # Use a different logger for distributed setups
41   # config.logger = SyslogLogger.new
42
43   # Use a different cache store in production
44   # config.cache_store = :mem_cache_store
45
46   # Enable serving of images, stylesheets, and JavaScripts from an asset server
47   # config.action_controller.asset_host = "http://assets.example.com"
48
49   # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
50   # config.assets.precompile += %w( search.js )
51
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
55
56   # Enable threaded mode
57   # config.threadsafe!
58
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
62
63   # Send deprecation notices to registered listeners
64   config.active_support.deprecation = :notify
65
66 end