1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/config/environments/production.rb

118 lines
4.2 KiB
Ruby
Raw Normal View History

2018-11-22 14:58:12 -05:00
# frozen_string_literal: true
2018-11-22 14:33:08 -05:00
Rails.application.configure do
2018-11-22 15:04:28 -05:00
# Settings specified here will take precedence over those
# in config/application.rb.
2018-11-22 14:33:08 -05:00
# Code is not reloaded between requests.
config.cache_classes = true
# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.eager_load = true
# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
2018-11-22 15:04:28 -05:00
# Ensures that a master key has been made available in either
# ENV["RAILS_MASTER_KEY"] or in config/master.key. This key is used
# to decrypt credentials (and other encrypted files).
2018-11-22 14:33:08 -05:00
# config.require_master_key = true
# Disable serving static files from the `/public` folder by default since
# Apache or NGINX already handles this.
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
# Compress JavaScripts and CSS.
config.assets.js_compressor = :uglifier
# config.assets.css_compressor = :sass
# Do not fallback to assets pipeline if a precompiled asset is missed.
config.assets.compile = false
2018-11-22 15:04:28 -05:00
# `config.assets.precompile` and `config.assets.version` have moved
# to config/initializers/assets.rb
2018-11-22 14:33:08 -05:00
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
# config.action_controller.asset_host = 'http://assets.example.com'
# Specifies the header that your server uses for sending files.
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
2018-11-22 15:04:28 -05:00
# Store uploaded files on the local file system
# (see config/storage.yml for options).
2018-11-22 14:33:08 -05:00
config.active_storage.service = :local
# Mount Action Cable outside main process or domain
# config.action_cable.mount_path = nil
# config.action_cable.url = 'wss://example.com/cable'
2018-11-22 15:04:28 -05:00
# config.action_cable.allowed_request_origins =
# ['http://example.com', /http:\/\/example.*/]
2018-11-22 14:33:08 -05:00
2018-11-22 15:04:28 -05:00
# Force all access to the app over SSL, use Strict-Transport-Security,
# and use secure cookies.
2018-12-03 17:00:03 -05:00
config.force_ssl = true
2018-11-22 14:33:08 -05:00
# Use the lowest log level to ensure availability of diagnostic information
# when problems arise.
2018-12-06 12:51:36 -05:00
config.log_level = :info
2018-11-22 14:33:08 -05:00
# Prepend all log lines with the following tags.
2018-11-22 15:00:34 -05:00
config.log_tags = [:request_id]
2018-11-22 14:33:08 -05:00
# Use a different cache store in production.
2018-12-08 22:56:06 -05:00
cache_conf = Rails.application.settings :cache_store
config.cache_store = :redis_cache_store, {
2019-04-28 09:34:46 -04:00
host: cache_conf[:host],
port: cache_conf[:port],
db: cache_conf[:db],
password: cache_conf[:password],
}
2018-11-22 14:33:08 -05:00
2018-11-22 15:04:28 -05:00
# Use a real queuing backend for Active Job
# (and separate queues per environment).
2018-11-22 14:33:08 -05:00
# config.active_job.queue_adapter = :resque
# config.active_job.queue_name_prefix = "partynest_#{Rails.env}"
2018-12-03 14:15:21 -05:00
# Send mail with SMTP.
config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
2018-11-22 14:33:08 -05:00
config.action_mailer.perform_caching = false
2019-07-19 15:48:09 -04:00
config.action_mailer.default_url_options = {
host: Rails.application.settings(:identity)[:site_domain],
}
2018-11-22 14:33:08 -05:00
# 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
# Send deprecation notices to registered listeners.
config.active_support.deprecation = :notify
# Use default logging formatter so that PID and timestamp are not suppressed.
config.log_formatter = ::Logger::Formatter.new
# Use a different logger for distributed setups.
# require 'syslog/logger'
2018-11-22 15:04:28 -05:00
# config.logger =
# ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
2018-11-22 14:33:08 -05:00
2018-11-22 15:00:34 -05:00
if ENV['RAILS_LOG_TO_STDOUT'].present?
2018-11-22 14:33:08 -05:00
logger = ActiveSupport::Logger.new(STDOUT)
logger.formatter = config.log_formatter
config.logger = ActiveSupport::TaggedLogging.new(logger)
end
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
2018-12-05 17:29:31 -05:00
# Middleware.
config.middleware.use Rack::Attack
2018-11-22 14:33:08 -05:00
end