【发布时间】:2016-07-01 18:48:56
【问题描述】:
我正在尝试使用 laravel homestead 并将“homestead.dev”重定向到“192.168.10.10”。我可以看到使用 IP 的网站,但看不到“homestead.dev”。
我收到此错误:
ERR_ICANN_NAME_COLLISION
ping homestead.dev 以 127.0.53.53 响应。 我也可以用这个访问网站:http://127.0.53.53:8000/。
我的家园.yaml:
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: ~/Code
to: /home/vagrant/Code
sites:
- map: homestead.dev
to: /home/vagrant/Code/myApp/public
databases:
- myApp
# blackfire:
# - id: foo
# token: bar
# client-id: foo
# client-token: bar
# ports:
# - send: 50000
# to: 5000
# - send: 7777
# to: 777
# protocol: udp
主机文件:
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
192.168.10.10 homestead.dev
【问题讨论】:
-
如果我在主机中使用
192.168.10.10 myapp.local,我会收到此错误:ERR_NAME_NOT_RESOLVED
标签: php laravel vagrant homestead hosts