Homesteadでlaravelの設定を行なっています。
homestead.yamlとmacのhostsのポート番号を同じにして設定したのですがうまくいきません。
いかにそれぞれポートが記載されているものを貼ります。
homestead
1--- 2ip: "192.168.10.10" 3memory: 2048 4cpus: 1 5provider: virtualbox 6 7authorize: ~/.ssh/id_rsa.pub 8 9keys: 10 - ~/.ssh/id_rsa 11 12folders: 13 - map: ~/code 14 to: /home/vagrant/code 15 16sites: 17 - map: sample.local 18 to: /home/vagrant/code/sample/public 19 20databases: 21 - homestead 22 - todo 23features: 24 - mysql: true 25 - mariadb: false 26 - postgresql: false 27 - ohmyzsh: false 28 - webdriver: false 29 30services: 31 - enabled: 32 - "mysql"
hosts
1## 2# Host Database 3# 4# localhost is used to configure the loopback interface 5# when the system is booting. Do not change this entry. 6## 7127.0.0.1 localhost 8255.255.255.255 broadcasthost 9::1 localhost 10192.168.10.10 sample.local 11# Added by Docker Desktop 12# To allow the same kube context to work on the host and the container: 13127.0.0.1 kubernetes.docker.internal 14# End of section
こうなっておりまして、google chromeのURLにsample.localとしてもウェルカムページが表示されません。
どなたかご教授いただきたいです。
よろしくお願いいたします。
あなたの回答
tips
プレビュー