2016-02-23 04:10:30 +11:00
|
|
|
Rails.application.configure do
|
2016-09-04 22:04:26 +10:00
|
|
|
config.x.local_domain = ENV['LOCAL_DOMAIN'] || "localhost:#{ENV['PORT'] || 3000}"
|
2016-03-01 06:06:39 +11:00
|
|
|
config.x.hub_url = ENV['HUB_URL'] || 'https://pubsubhubbub.superfeedr.com'
|
|
|
|
config.x.use_https = ENV['LOCAL_HTTPS'] == 'true'
|
2016-11-07 06:43:16 +11:00
|
|
|
config.x.use_s3 = ENV['S3_ENABLED'] == 'true'
|
2016-03-01 06:06:39 +11:00
|
|
|
|
2016-09-04 22:04:26 +10:00
|
|
|
config.action_mailer.default_url_options = { host: config.x.local_domain, protocol: config.x.use_https ? 'https://' : 'http://', trailing_slash: false }
|
2016-08-19 02:51:50 +10:00
|
|
|
|
|
|
|
if Rails.env.production?
|
|
|
|
config.action_cable.allowed_request_origins = ["http#{config.x.use_https ? 's' : ''}://#{config.x.local_domain}"]
|
|
|
|
end
|
2016-02-23 04:10:30 +11:00
|
|
|
end
|