From fb4a40e628fab3489c145726706692f9d8332105 Mon Sep 17 00:00:00 2001 From: Matt Palmer Date: Fri, 9 Oct 2015 08:47:01 +1100 Subject: [PATCH] Fix rails server start command in Vagrant guide Thanks to Mittineague on meta for pointing out this needed to be fixed for newer Rails versions. --- docs/VAGRANT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/VAGRANT.md b/docs/VAGRANT.md index 4fc103cd464..b22a77cc304 100644 --- a/docs/VAGRANT.md +++ b/docs/VAGRANT.md @@ -87,7 +87,7 @@ bundle exec rake db:migrate Once your VM is up to date, you can start a rails instance using the following command from the /vagrant directory: ``` -bundle exec rails s +bundle exec rails s -b 0.0.0.0 ``` In a few seconds, rails will start serving pages. To access them, open a web browser to [http://localhost:4000](http://localhost:4000) - if it all worked you should see discourse! Congratulations, you are ready to start working!