2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
Discourse::Application.configure do
|
|
|
|
# Settings specified here will take precedence over those in config/application.rb
|
|
|
|
|
|
|
|
# Code is not reloaded between requests
|
|
|
|
config.cache_classes = true
|
2013-11-25 23:16:56 -05:00
|
|
|
config.eager_load = true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# Full error reports are disabled and caching is turned on
|
|
|
|
config.consider_all_requests_local = false
|
|
|
|
config.action_controller.perform_caching = true
|
|
|
|
|
|
|
|
# Disable Rails's static asset server (Apache or nginx will already do this)
|
2017-10-27 12:32:23 -04:00
|
|
|
config.public_file_server.enabled = GlobalSetting.serve_static_assets || false
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2019-05-14 05:28:18 -04:00
|
|
|
config.assets.js_compressor = :uglifier
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# stuff should be pre-compiled
|
|
|
|
config.assets.compile = false
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# Generate digests for assets URLs
|
|
|
|
config.assets.digest = true
|
|
|
|
|
2014-11-17 00:58:14 -05:00
|
|
|
config.log_level = :info
|
|
|
|
|
2013-12-19 23:12:23 -05:00
|
|
|
if GlobalSetting.smtp_address
|
2013-12-20 03:12:08 -05:00
|
|
|
settings = {
|
2018-12-04 04:48:16 -05:00
|
|
|
address: GlobalSetting.smtp_address,
|
|
|
|
port: GlobalSetting.smtp_port,
|
|
|
|
domain: GlobalSetting.smtp_domain,
|
|
|
|
user_name: GlobalSetting.smtp_user_name,
|
|
|
|
password: GlobalSetting.smtp_password,
|
|
|
|
authentication: GlobalSetting.smtp_authentication,
|
2022-08-15 11:14:09 -04:00
|
|
|
enable_starttls_auto: GlobalSetting.smtp_enable_start_tls,
|
|
|
|
open_timeout: GlobalSetting.smtp_open_timeout,
|
|
|
|
read_timeout: GlobalSetting.smtp_read_timeout
|
2013-12-19 23:12:23 -05:00
|
|
|
}
|
2013-12-20 03:12:08 -05:00
|
|
|
|
2014-05-13 21:27:29 -04:00
|
|
|
settings[:openssl_verify_mode] = GlobalSetting.smtp_openssl_verify_mode if GlobalSetting.smtp_openssl_verify_mode
|
|
|
|
|
2021-01-18 11:56:18 -05:00
|
|
|
if GlobalSetting.smtp_force_tls
|
|
|
|
settings[:tls] = true
|
|
|
|
end
|
|
|
|
|
2022-06-07 10:58:04 -04:00
|
|
|
config.action_mailer.smtp_settings = settings.compact
|
2013-10-08 10:48:57 -04:00
|
|
|
else
|
|
|
|
config.action_mailer.delivery_method = :sendmail
|
|
|
|
config.action_mailer.sendmail_settings = { arguments: '-i' }
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Send deprecation notices to registered listeners
|
|
|
|
config.active_support.deprecation = :notify
|
|
|
|
|
2016-04-17 23:40:04 -04:00
|
|
|
# this will cause all handlebars templates to be pre-compiled, making your page faster
|
2013-02-05 14:16:51 -05:00
|
|
|
config.handlebars.precompile = true
|
|
|
|
|
2014-07-16 18:34:30 -04:00
|
|
|
# allows developers to use mini profiler
|
|
|
|
config.load_mini_profiler = GlobalSetting.load_mini_profiler
|
2013-04-22 05:16:58 -04:00
|
|
|
|
2013-04-11 06:49:47 -04:00
|
|
|
# Discourse strongly recommend you use a CDN.
|
|
|
|
# For origin pull cdns all you need to do is register an account and configure
|
2013-12-19 23:12:23 -05:00
|
|
|
config.action_controller.asset_host = GlobalSetting.cdn_url
|
2013-04-11 06:49:47 -04:00
|
|
|
|
2013-09-04 20:27:34 -04:00
|
|
|
# a comma delimited list of emails your devs have
|
|
|
|
# developers have god like rights and may impersonate anyone in the system
|
|
|
|
# normal admins may only impersonate other moderators (not admins)
|
2013-12-19 23:12:23 -05:00
|
|
|
if emails = GlobalSetting.developer_emails
|
2016-05-26 22:18:54 -04:00
|
|
|
config.developer_emails = emails.split(",").map(&:downcase).map(&:strip)
|
2013-11-01 19:25:43 -04:00
|
|
|
end
|
2013-09-04 20:27:34 -04:00
|
|
|
|
2021-04-21 11:26:20 -04:00
|
|
|
config.active_record.dump_schema_after_migration = false
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|