i have a website i'm developing in Laravel running on a Homestead VM, and i'd like to be able to see it on both my and one of my colleague's phones when i'm trying to design the responsive Mobile parts of it.
I'm trying to use xip.io to achieve that, what i've done is, i looked at my private IP address from my Windows network settings page. (198.169.100.21)
I've defined in my HOSTS file that the domain dev.198.169.100.21.xip.io
should direct to 10.10.21.1 (ip of my vagrant instance running on my machine)
Then, i SSH into my Vagrant box and tell NGINX to route all requests to dev.198.169.100.21.xip.io
to my project.
I go to that address on my IPhone, it works, so far so good, i just need to make sure i'm logged into the company's access point and i'm good. The problem is that my colleagues can't see the site on their own mobile phones, even though they are using the same access point as me...
Am i missing something here? I hope someone who's used xip.io in the past can help me out with this. Thank you in advance! :)