]> cat aescling's git repositories - mastodon.git/commitdiff
Change streaming API URL when remote development (#5942)
authorYamagishi Kazutoshi <ykzts@desire.sh>
Wed, 13 Dec 2017 11:43:54 +0000 (20:43 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Wed, 13 Dec 2017 11:43:54 +0000 (12:43 +0100)
* Change streaming API URL when remote development

* Use STREAMING_API_BASE_URL when dev env

config/initializers/ostatus.rb

index ba96fda22ca795662149a4df24d68c8654d9d8f8..bb8591f74756dcac51f2c9ed28dc672c073f049f 100644 (file)
@@ -17,9 +17,12 @@ Rails.application.configure do
   config.x.alternate_domains = alternate_domains.split(/\s*,\s*/)
 
   config.action_mailer.default_url_options = { host: web_host, protocol: https ? 'https://' : 'http://', trailing_slash: false }
-  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') { "ws#{https ? 's' : ''}://#{web_host}" }
+  config.x.streaming_api_base_url = ENV.fetch('STREAMING_API_BASE_URL') do
+    if Rails.env.production?
+      "ws#{https ? 's' : ''}://#{web_host}"
+    else
+      "ws://#{ENV['REMOTE_DEV'] == 'true' ? host.split(':').first : 'localhost'}:4000"
+    end
   end
 end