Change default interface of web and streaming from 0.0.0.0 to 127.0.0.1 (#11302)
This commit is contained in:
@ -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' }
|
||||
|
Reference in New Issue
Block a user