Hi all,
I set the following lines into my first Vagrant virtual machine config file:
config.vm.network "forwarded_port", guest_ip: "192.168.1.2", guest: 80, host: 8080
config.vm.network "private_network", ip: "192.168.1.2"
but the forward ports action doesn't work.
I looked through Vagrant's documentation but I didn't found anything related to this issue.
I can load web pages from guest virtual machine without any problem but using default port: 80.
Do I need to add something else to my Vagrant config file to to set "forwarded_port" running correctly?
Thanks,
Bruno.