Vagrant port forwarding not working, no errors

I’m running a django app in the guest machine, but when i try to open it in my browser on the host machine it is stuck on loading.

This is my Vagrantfile (using default provider virtualbox).

Vagrant.configure("2") do |config|
  config.vm.box = "generic/alma9"
  config.vm.network :forwarded_port, guest: 8000, host: 8080, host_ip: "127.0.0.1", guest_ip: "0.0.0.0"
  config.vm.provision "ansible" do |ansible|
    ansible.compatibility_mode = "2.0"
    ansible.playbook = "playbook.yml"
  end
end

As you can see above the ports forwarding is being done successfullly.

On left side I have my guest/vagrant machine and host machine on the right, and the process on the right is stuck after > Accept: */* for a while and then fails.
When i try to visit the webpage in browsers it is stuck on loading.

Thanx for the help!