From a1c7f1b446e9211c0b78b1b7a0d66b6378b74e1d Mon Sep 17 00:00:00 2001 From: Godfrey Chan Date: Tue, 28 Apr 2015 20:58:05 -0700 Subject: [PATCH] Revert "Merge pull request #19817 from tpitale/4_2-release-notes-fix" This reverts commit 00aa1afae3821dd858dec7111bcdf230b12040d7, reversing changes made to b584cc68fc28492147ed3ed127ad8a7441ca8161. Reason: As far as we can tell, this should not be the case. Both localhost, 127.0.0.1 and ::1 is "supposed to work", so this is probably a bug somewhere. Reopening #19815 instead. --- guides/source/4_2_release_notes.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md index d5b3766a5b..684bd286bc 100644 --- a/guides/source/4_2_release_notes.md +++ b/guides/source/4_2_release_notes.md @@ -214,8 +214,9 @@ end Due to a [change in Rack](https://github.com/rack/rack/commit/28b014484a8ac0bbb388e7eaeeef159598ec64fc), `rails server` now listens on `localhost` instead of `0.0.0.0` by default. This -should have minimal impact on the standard development workflow as http://localhost:3000 -will continue to work as before on your own machine. +should have minimal impact on the standard development workflow as both +http://127.0.0.1:3000 and http://localhost:3000 will continue to work as before +on your own machine. However, with this change you will no longer be able to access the Rails server from a different machine, for example if your development environment