Hello,
This is my first time using Vagrant to run Laravel Homestead on Windows 10. My vagrant running smoothly.
But, when i access this address : 127.0.0.1:8000
i get error response This webpage is not available
.
Here is my Homestead.yaml file
---
ip: "192.168.1.100"
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: ~/Projects
to: /home/vagrant/Code
sites:
- map: laravel.dev
to: /home/vagrant/Code/laravel-basics/public
databases:
- homestead
Here is my hosts file
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
192.168.1.100 laravel.dev
how to fix that? Thank you :)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community