I downloaded vagrant and created a new ubuntu VM. Then I installed apache2 in ubuntu. When I accessed localhost:8080 from my web browser in windows it gave me this error "The webpage at http://localhost:8080/ might be temporarily down or it may have moved permanently to a new web address. ERR_SOCKET_NOT_CONNECTED"
I am doing my full stack nanodegree from udacity and they said that once apache2 is installed , i should be able to access localhost:8080 and get that apache intro page.
I am very new to all this so please tell me how to fix this.
My VAGRANT FILE:
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip:
"127.0.0.1"
end