aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/server
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/commands/server')
-rw-r--r--railties/lib/rails/commands/server/server_command.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/server/server_command.rb b/railties/lib/rails/commands/server/server_command.rb
index 98605b05b2..4349dfdc71 100644
--- a/railties/lib/rails/commands/server/server_command.rb
+++ b/railties/lib/rails/commands/server/server_command.rb
@@ -90,7 +90,9 @@ module Rails
end
def default_options
- super.merge( Port: ENV.fetch("PORT", 3000).to_i,
+ super.merge(
+ Port: ENV.fetch("PORT", 3000).to_i,
+ Host: ENV.fetch("HOST", "localhost").dup,
DoNotReverseLookup: true,
environment: (ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development").dup,
daemonize: false,