From ea26abeed820d511a8127f4edf06060e3dc129dc Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 27 Feb 2005 17:13:55 +0000 Subject: [PATCH] Correct default for ip binding on webrick server #717 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@804 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/bin/server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railties/bin/server b/railties/bin/server index ae0bc8deae903..e672a47637784 100644 --- a/railties/bin/server +++ b/railties/bin/server @@ -22,7 +22,7 @@ ARGV.options do |opts| "Default: 3000") { |OPTIONS[:port]| } opts.on("-b", "--binding=ip", String, "Binds Rails to the specified ip.", - "Default: 127.0.0.1") { |OPTIONS[:ip]| } + "Default: 0.0.0.0") { |OPTIONS[:ip]| } opts.on("-i", "--index=controller", String, "Specifies an index controller that requests for root will go to (instead of congratulations screen)." ) { |OPTIONS[:index_controller]| }