about summary refs log tree commit diff
path: root/config/puma.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/puma.rb')
-rw-r--r--config/puma.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/puma.rb b/config/puma.rb
index 0397b8920..d31ae40c8 100644
--- a/config/puma.rb
+++ b/config/puma.rb
@@ -4,7 +4,8 @@ threads threads_count, threads_count
 if ENV['SOCKET'] then
   bind 'unix://' + ENV['SOCKET']
 else
-  port ENV.fetch('PORT') { 3000 }
+  port_num = ENV.fetch('PORT') { 3000 }
+  bind "tcp://127.0.0.1:#{port_num}"
 end
 
 environment ENV.fetch('RAILS_ENV') { 'development' }