I'm trying to setup Homestead but it's not working. I've followed the documentation on https://laravel.com/docs/5.2/homestead and watch the videos on laracast. But still can't figure out why it's not working. When I go to test.app:8000 the following message shows up:
No input file specified.
Also when I changed paths in my homestead.yaml file I exec "vagrant provision".
This is how my homestead.yaml file looks like (in Homestead/Homestead.yaml):
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: ~/documents/vagrant/sites
to: /home/vagrant/Code
sites:
- map: test.app
to: /home/vagrant/Code/test
databases:
- homestead
# blackfire:
# - id: foo
# token: bar
# client-id: foo
# client-token: bar
# ports:
# - send: 50000
# to: 5000
# - send: 7777
# to: 777
# protocol: udp
The path of my folders: "~/documents/vagrant/sites" does exist because I can cd into it. I also added test.app to my etc/hosts file (see screenshot).
What am I doing wrong... Trying to setup homestead for hours now!