diff options
-rw-r--r-- | railties/CHANGELOG | 2 | ||||
-rw-r--r-- | railties/bin/server | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 6b08682040..678d5cd928 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Changed default IP binding for WEBrick from 127.0.0.1 to 0.0.0.0 so that the server is accessible both locally and remotely #696 [Marcel] + * Fixed that script/server -d was broken so daemon mode couldn't be used #687 [Nicholas Seckar] * Upgraded to breakpoint 92 which fixes: diff --git a/railties/bin/server b/railties/bin/server index 2c0cfdfa8f..ae0bc8deae 100644 --- a/railties/bin/server +++ b/railties/bin/server @@ -5,7 +5,7 @@ require 'optparse' OPTIONS = { :port => 3000, - :ip => "127.0.0.1", + :ip => "0.0.0.0", :environment => "development", :server_root => File.expand_path(File.dirname(__FILE__) + "/../public/"), :server_type => WEBrick::SimpleServer |