From b533daa902d39e05f1bf35fc2abc69b82a13aeb3 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Sun, 28 Sep 2014 19:50:22 +0200 Subject: [PATCH] Use Vagrant IP address for domain linking --- homestead.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homestead.md b/homestead.md index 825f6bf9d9d..646c6e2e3c0 100644 --- a/homestead.md +++ b/homestead.md @@ -91,11 +91,11 @@ Once you have edited the `Homestead.yaml` to your liking, run the `vagrant up` c Don't forget to add the "domains" for your Nginx sites to the `hosts` file on your machine! The `hosts` file will redirect your requests for the local domains into your Homestead environment. On Mac and Linux, this file is located at `/etc/hosts`. On Windows, it is located at `C:\Windows\System32\drivers\etc\hosts`. The lines you add to this file will look like the following: - 127.0.0.1 homestead.app + 192.168.10.10 homestead.app -Once you have added the domain to your `hosts` file, you can access the site via your web browser on port 8000! +Make sure the ip address is the one you set in your `Homestead.yaml` file. Once you have added the domain to your `hosts` file, you can access the site via your web browser! - http://homestead.app:8000 + http://homestead.app To learn how to connect to your databases, read on!