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)
|
|
|
|
config.serve_static_assets = false
|
|
|
|
|
2013-12-18 00:46:37 -05:00
|
|
|
if rails4?
|
|
|
|
config.assets.js_compressor = :uglifier
|
|
|
|
config.assets.css_compressor = :sass
|
|
|
|
else
|
|
|
|
config.assets.compress = true
|
|
|
|
end
|
2013-12-16 02:21:24 -05:00
|
|
|
|
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
|
|
|
|
|
|
|
|
# Specifies the header that your server uses for sending files
|
|
|
|
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
|
|
|
|
|
|
|
# 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-18 00:46:37 -05:00
|
|
|
# specify your smtp url using the SMTP_URL env var eg:
|
|
|
|
# SMTP_URL=smtp://user:password@myhost.com
|
2013-10-08 10:48:57 -04:00
|
|
|
if ENV.key?('SMTP_URL')
|
|
|
|
config.action_mailer.smtp_settings = begin
|
|
|
|
uri = URI.parse(ENV['SMTP_URL'])
|
|
|
|
params = {
|
|
|
|
:address => uri.host,
|
2013-12-18 00:46:37 -05:00
|
|
|
:port => uri.port || 25,
|
2013-10-08 10:48:57 -04:00
|
|
|
:domain => (uri.path || "").split("/")[1],
|
|
|
|
:user_name => uri.user,
|
|
|
|
:password => uri.password,
|
|
|
|
:authentication => 'plain',
|
2013-12-18 00:46:37 -05:00
|
|
|
:enable_starttls_auto => !ENV['SMTP_DISABLE_TLS']
|
2013-10-08 10:48:57 -04:00
|
|
|
}
|
|
|
|
CGI.parse(uri.query || "").each {|k,v| params[k.to_sym] = v.first}
|
|
|
|
params
|
|
|
|
rescue
|
|
|
|
raise "Invalid SMTP_URL"
|
|
|
|
end
|
|
|
|
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
|
|
|
|
|
2013-04-11 02:24:08 -04:00
|
|
|
# this will cause all handlebars templates to be pre-compiles, making your page faster
|
2013-02-05 14:16:51 -05:00
|
|
|
config.handlebars.precompile = true
|
|
|
|
|
2013-04-11 02:24:08 -04:00
|
|
|
# allows admins to use mini profiler
|
2013-12-18 00:46:37 -05:00
|
|
|
config.enable_mini_profiler = !ENV["DISABLE_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-11-29 12:35:29 -05:00
|
|
|
config.action_controller.asset_host = ENV["CDN_URL"] if ENV["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-11-01 19:25:43 -04:00
|
|
|
if emails = ENV["DEVELOPER_EMAILS"]
|
|
|
|
config.developer_emails = emails.split(",")
|
|
|
|
end
|
2013-09-04 20:27:34 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|