2016-12-05 03:07:02 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-29 05:21:05 +09:00
|
|
|
port = ENV.fetch('PORT') { 3000 }
|
|
|
|
host = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" }
|
2017-04-15 09:15:46 +09:00
|
|
|
web_host = ENV.fetch('WEB_DOMAIN') { host }
|
2016-11-29 05:21:05 +09:00
|
|
|
https = ENV['LOCAL_HTTPS'] == 'true'
|
2016-12-05 03:07:02 +09:00
|
|
|
|
2016-02-23 02:10:30 +09:00
|
|
|
Rails.application.configure do
|
2016-11-29 05:21:05 +09:00
|
|
|
config.x.local_domain = host
|
2017-04-15 09:15:46 +09:00
|
|
|
config.x.web_domain = web_host
|
2016-11-29 05:21:05 +09:00
|
|
|
config.x.use_https = https
|
2016-11-07 04:43:16 +09:00
|
|
|
config.x.use_s3 = ENV['S3_ENABLED'] == 'true'
|
2016-03-01 04:06:39 +09:00
|
|
|
|
2017-04-15 09:15:46 +09:00
|
|
|
config.action_mailer.default_url_options = { host: web_host, protocol: https ? 'https://' : 'http://', trailing_slash: false }
|
2017-02-04 08:34:31 +09:00
|
|
|
config.x.streaming_api_base_url = 'http://localhost:4000'
|
2016-08-19 01:51:50 +09:00
|
|
|
|
|
|
|
if Rails.env.production?
|
2017-04-15 09:15:46 +09:00
|
|
|
config.action_cable.allowed_request_origins = ["http#{https ? 's' : ''}://#{web_host}"]
|
|
|
|
config.x.streaming_api_base_url = ENV.fetch('STREAMING_API_BASE_URL') { "http#{https ? 's' : ''}://#{web_host}" }
|
2016-08-19 01:51:50 +09:00
|
|
|
end
|
2016-02-23 02:10:30 +09:00
|
|
|
end
|