Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

delahappy@gmail.com's avatar

Homestead / Vagrant won't respond to web traffic.

I have been following the tutorial and ran into an issue. Here is my vagrant file:

---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox

authorize: ~/.ssh/id_rsa.pub

keys:
    - ~/.ssh/id_rsa

folders:
    - map: ~/PhpstormProjects
      to: /home/vagrant/Code

sites:
    - map: cci-devvm-tj.app
      to: /home/vagrant/Code/devvm-web/public

databases:
    - homestead

# blackfire:
#     - id: foo
#       token: bar
#       client-id: foo
#       client-token: bar

# ports:
#     - send: 50000
#       to: 5000
#     - send: 7777
#       to: 777
#       protocol: udp

Here is my /etc/hosts file:

127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost
192.168.10.10 cci-devvm-tj.app

I can see my code on the vagrant box. When I run curl http://cci-devvm-tj.app from the vagrant box I see the html of my login page.

When I hit the site from my host OS browser it times out.

Any ideas?

0 likes
5 replies
TerrePorter's avatar

Could your host machine firewall be blocking the port?

goatshark's avatar

Can you ping 192.168.10.10 from your host OS?

delahappy@gmail.com's avatar

Firewall is turned off but I can't ping it. I guess maybe it is central IT's network blocking it.

Please or to participate in this conversation.