Copying the boot.rb code will break after 5.1
require 'rails/commands/server'
module Rails
class Server
alias :_default_options :default_options
def default_options
_default_options.merge!(Host:'0.0.0.0')
end
end
end
Copying the boot.rb code will break after 5.1
require 'rails/commands/server'
module Rails
class Server
alias :_default_options :default_options
def default_options
_default_options.merge!(Host:'0.0.0.0')
end
end
end
This should correct the problem