2013-02-06 03:16:51 +08: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-26 12:16:56 +08:00
|
|
|
config.eager_load = true
|
|
|
|
|
2013-02-06 03:16:51 +08: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)
|
2014-02-17 07:43:57 +08:00
|
|
|
config.serve_static_assets = GlobalSetting.serve_static_assets
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2014-02-18 00:44:28 +08:00
|
|
|
config.assets.js_compressor = :uglifier
|
|
|
|
config.assets.css_compressor = :sass
|
2013-12-16 15:21:24 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# stuff should be pre-compiled
|
|
|
|
config.assets.compile = false
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# Generate digests for assets URLs
|
|
|
|
config.assets.digest = true
|
|
|
|
|
|
|
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
|
|
# the I18n.default_locale when a translation can not be found)
|
|
|
|
config.i18n.fallbacks = true
|
|
|
|
|
2013-12-20 12:12:23 +08:00
|
|
|
if GlobalSetting.smtp_address
|
2013-12-20 16:12:08 +08:00
|
|
|
settings = {
|
2013-12-20 12:12:23 +08:00
|
|
|
address: GlobalSetting.smtp_address,
|
|
|
|
port: GlobalSetting.smtp_port,
|
|
|
|
domain: GlobalSetting.smtp_domain,
|
2013-12-21 09:50:17 +08:00
|
|
|
user_name: GlobalSetting.smtp_user_name,
|
|
|
|
password: GlobalSetting.smtp_password,
|
2014-01-06 20:49:42 +08:00
|
|
|
authentication: GlobalSetting.smtp_authentication,
|
2014-05-14 09:27:29 +08:00
|
|
|
enable_starttls_auto: GlobalSetting.smtp_enable_start_tls
|
2013-12-20 12:12:23 +08:00
|
|
|
}
|
2013-12-20 16:12:08 +08:00
|
|
|
|
2014-05-14 09:27:29 +08:00
|
|
|
settings[:openssl_verify_mode] = GlobalSetting.smtp_openssl_verify_mode if GlobalSetting.smtp_openssl_verify_mode
|
|
|
|
|
2013-12-20 16:12:08 +08:00
|
|
|
config.action_mailer.smtp_settings = settings.reject{|x,y| y.nil?}
|
2013-10-08 22:48:57 +08:00
|
|
|
else
|
|
|
|
config.action_mailer.delivery_method = :sendmail
|
|
|
|
config.action_mailer.sendmail_settings = {arguments: '-i'}
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Send deprecation notices to registered listeners
|
|
|
|
config.active_support.deprecation = :notify
|
|
|
|
|
2013-04-11 14:24:08 +08:00
|
|
|
# this will cause all handlebars templates to be pre-compiles, making your page faster
|
2013-02-06 03:16:51 +08:00
|
|
|
config.handlebars.precompile = true
|
|
|
|
|
2014-07-17 06:34:30 +08:00
|
|
|
# allows developers to use mini profiler
|
|
|
|
config.load_mini_profiler = GlobalSetting.load_mini_profiler
|
2013-04-22 17:16:58 +08:00
|
|
|
|
2013-04-11 18:49:47 +08: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-20 12:12:23 +08:00
|
|
|
config.action_controller.asset_host = GlobalSetting.cdn_url
|
2013-04-11 18:49:47 +08:00
|
|
|
|
2013-09-05 08:27:34 +08: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-20 12:12:23 +08:00
|
|
|
if emails = GlobalSetting.developer_emails
|
2013-11-02 07:25:43 +08:00
|
|
|
config.developer_emails = emails.split(",")
|
|
|
|
end
|
2013-09-05 08:27:34 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|