I installed Vagrant and VM on my Ubuntu 15, add a box and did a vagrant up with not a problem. But I cant connect to my project when I say to my browser 127.0.0.1:8080. What can I be doing wrong on vagrant?
This is my Vagrantfile:
Vagrant.configure(2) do |config|
if Vagrant.has_plugin?("vagrant-proxyconf")
config.proxy.http = "http://10.0.1.254:3128/"
config.proxy.https = "http://10.0.1.254:3128/"
config.proxy.no_proxy = "localhost,127.0.0.1,.teste.com"
end
config.vm.box = "hashicorp/precise32"
config.vm.network "forwarded_port", guest: 80, host: 8080
end