about summary refs log tree commit diff
path: root/config
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-07-15 05:56:35 +0200
committerThibaut Girka <thib@sitedethib.com>2019-07-16 16:10:19 +0200
commitbe053560e98dc9b702ee347518994e0b07914fae (patch)
tree46ade3ab73effd3ba8ace831057b5c1f67a5eed9 /config
parent5ccd011cc3bafc00a557dabbb47da004f3d4a381 (diff)
Change default interface of web and streaming from 0.0.0.0 to 127.0.0.1 (#11302)
Diffstat (limited to 'config')
-rw-r--r--config/puma.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/puma.rb b/config/puma.rb
index 1afdb1c6d..25a5534b2 100644
--- a/config/puma.rb
+++ b/config/puma.rb
@@ -2,9 +2,9 @@ threads_count = ENV.fetch('MAX_THREADS') { 5 }.to_i
 threads threads_count, threads_count
 
 if ENV['SOCKET']
-  bind 'unix://' + ENV['SOCKET']
+  bind "unix://#{ENV['SOCKET']}"
 else
-  port ENV.fetch('PORT') { 3000 }
+  bind "tcp://127.0.0.1:#{ENV.fetch('PORT', 3000)}"
 end
 
 environment ENV.fetch('RAILS_ENV') { 'development' }