You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I managed to make the 1.9.3 version working by rewritten all my Vagrantfile(s) and adding the host_id: "127.0.0.1" parameter for each of the "forwarded_port" network configuration.
E.g.: config.vm.network "forwarded_port", guest: 22, host: 1022, host_ip: "127.0.0.1", id: 'ssh'
You need to modify /provision/puphpet/vagrant/Vagrantfile-local and add host_ip: '127.0.0.1': config.vm.network :forwarded_port, guest: port['guest'].to_i, host: port['host'].to_i, host_ip: '127.0.0.1', auto_correct: true
The text was updated successfully, but these errors were encountered:
Description
Error during
magestead new
command or withmagestead vm:up
:Workaround
You need to modify
/provision/puphpet/vagrant/Vagrantfile-local
and addhost_ip: '127.0.0.1'
:config.vm.network :forwarded_port, guest: port['guest'].to_i, host: port['host'].to_i, host_ip: '127.0.0.1', auto_correct: true
The text was updated successfully, but these errors were encountered: