From 7cd40bfd36ffa981dba7c9c812abbb9d559d509b Mon Sep 17 00:00:00 2001 From: Henry Snoek Date: Mon, 30 Oct 2017 08:58:40 +0100 Subject: [PATCH] use .test instead of .dev as development domain Since .dev is an official Top Level Domain it should not be used for local development. Also, Chrome forces https on these domains. --- setup/homestead.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup/homestead.rst b/setup/homestead.rst index cd3948fe375..d56ddab31ce 100644 --- a/setup/homestead.rst +++ b/setup/homestead.rst @@ -48,19 +48,19 @@ configuration: # ... sites: - - map: symfony-demo.dev + - map: symfony-demo.test to: /home/vagrant/projects/symfony_demo/web type: symfony The ``type`` option tells Homestead to use the Symfony nginx configuration. -At last, edit the hosts file on your local machine to map ``symfony-demo.dev`` +At last, edit the hosts file on your local machine to map ``symfony-demo.test`` to ``192.168.10.10`` (which is the IP used by Homestead):: # /etc/hosts (unix) or C:\Windows\System32\drivers\etc\hosts (Windows) - 192.168.10.10 symfony-demo.dev + 192.168.10.10 symfony-demo.test -Now, navigate to ``http://symfony-demo.dev`` in your web browser and enjoy +Now, navigate to ``http://symfony-demo.test`` in your web browser and enjoy developing your Symfony application! .. seealso::