Level 12
Could your host machine firewall be blocking the port?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
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?
Please or to participate in this conversation.