I am currently using the latest version of Vagrant with the addition of a VMWare workstation provider (although I do not think the second part is relevant). I want to run webservers for my development work (i.e. NGINX or Rails Server) so that I can access them via IP (or DNS Spoofed Domain name) from the host computer, which is now window 8. In my current setup it assigns an IP address 192.168.xxx.xxxthat I cannot access from outside the guest machine. Current Current Vagrantfile:
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "vmwsbox"
config.vm.network :public_network
end
source
share