Skip to content

Commit 7cd40bf

Browse files
author
Henry Snoek
committed
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.
1 parent 7b7ce88 commit 7cd40bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup/homestead.rst

+4-4
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)