0
0
Fork 0

Use ws protocol in streaming API base URL (#2606)

This commit is contained in:
Akihiko Odaki 2017-05-04 22:55:13 +09:00 committed by Eugen Rochko
parent 629a4d0fca
commit 0cdcf32865
2 changed files with 3 additions and 13 deletions

View file

@ -12,9 +12,9 @@ Rails.application.configure do
config.x.use_s3 = ENV['S3_ENABLED'] == 'true'
config.action_mailer.default_url_options = { host: web_host, protocol: https ? 'https://' : 'http://', trailing_slash: false }
config.x.streaming_api_base_url = 'http://localhost:4000'
config.x.streaming_api_base_url = 'ws://localhost:4000'
if Rails.env.production?
config.x.streaming_api_base_url = ENV.fetch('STREAMING_API_BASE_URL') { "http#{https ? 's' : ''}://#{web_host}" }
config.x.streaming_api_base_url = ENV.fetch('STREAMING_API_BASE_URL') { "ws#{https ? 's' : ''}://#{web_host}" }
end
end