If you change the sites property after provisioning the Homestead box, you should re-run vagrant reload --provision to update the Nginx configuration on the virtual machine.
what do you mean by "can't get anything in my browser". is there an error? is it a blank page? if it's a blank page, it could be related to folder permissions but usually homestead is pretty good with that.
Thanks for the reply. I had just been getting a server not found page (should have said that in the original post).
However I did get it working. I did two things so I'm not sure which fixed it for me:
I removed my Homestead directory from C:\www and placed it in C:\Users\username. I don't think this was the reason it wasn't working, but wanted to follow a tutorial.
I changed the paths for my folders and sites in my homestead.yaml file. I think this was the main cause:
folders:
- map: "C:\www\laravel_projects"
to: /home/vagrant/laravel_projects
sites:
- map: test.app
to: /home/vagrant/laravel_projects/test
Note: Once I installed laravel into my test directory I changed sites to:
sites:
- map: test.app
to: /home/vagrant/laravel_projects/test/public