Skip to content

Commit 2fe2136

Browse files
committed
bug #8567 use .test instead of .dev as development domain (snoek09)
This PR was merged into the 2.7 branch. Discussion ---------- 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. Commits ------- 7cd40bf use .test instead of .dev as development domain
2 parents 7b7ce88 + 7cd40bf commit 2fe2136

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup/homestead.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@ configuration:
4848
4949
# ...
5050
sites:
51-
- map: symfony-demo.dev
51+
- map: symfony-demo.test
5252
to: /home/vagrant/projects/symfony_demo/web
5353
type: symfony
5454
5555
The ``type`` option tells Homestead to use the Symfony nginx configuration.
5656

57-
At last, edit the hosts file on your local machine to map ``symfony-demo.dev``
57+
At last, edit the hosts file on your local machine to map ``symfony-demo.test``
5858
to ``192.168.10.10`` (which is the IP used by Homestead)::
5959

6060
# /etc/hosts (unix) or C:\Windows\System32\drivers\etc\hosts (Windows)
61-
192.168.10.10 symfony-demo.dev
61+
192.168.10.10 symfony-demo.test
6262

63-
Now, navigate to ``http://symfony-demo.dev`` in your web browser and enjoy
63+
Now, navigate to ``http://symfony-demo.test`` in your web browser and enjoy
6464
developing your Symfony application!
6565

6666
.. seealso::

0 commit comments

Comments
 (0)