Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / config / environments / production.rb.example
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 ArvadosWorkbench::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.public_file_server.enabled = false
17
18   # Compress JavaScripts and CSS
19   config.assets.js_compressor = :uglifier
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 nil and saved in location specified by config.assets.prefix
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   # Prepend all log lines with the following tags
41   # config.log_tags = [ :subdomain, :uuid ]
42
43   # Use a different logger for distributed setups
44   # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
45
46   # Use a different cache store in production
47   # config.cache_store = :mem_cache_store
48
49   # Enable serving of images, stylesheets, and JavaScripts from an asset server
50   # config.action_controller.asset_host = "http://assets.example.com"
51
52   # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
53   # config.assets.precompile += %w( search.js )
54
55   # Disable delivery errors, bad email addresses will be ignored
56   # config.action_mailer.raise_delivery_errors = false
57
58   # Enable threaded mode
59   # config.threadsafe!
60
61   # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
62   # the I18n.default_locale when a translation can not be found)
63   config.i18n.fallbacks = true
64
65   # Send deprecation notices to registered listeners
66   config.active_support.deprecation = :notify
67
68   # Log timing data for API transactions
69   config.profiling_enabled = false
70
71 end