I\'m running into an issue getting vagrant share to work in conjunction with the laravel homestead vagrant box. My homestead.yaml file looks like:
---
ip: \"192.
There's a solution without having to do anything on your homestead VM.
You can install a program called ngrok which does a similar thing to vagrant share
but works better with the multiple sites that Homestead uses. You will need to sign up for an account but basic usage is free.
Run: ngrok http -host-header=rewrite your-local-site.app:80
(Where your-local-site.app is what's used for the map directive in your Homestead.yaml
file)
Then your site will be available globally on the url that ngrok gives you.