0
我在我的Ubuntu 15上安裝了Vagrant和虛擬機,添加了一個盒子,並且沒有問題,但是當我對我的瀏覽器127.0.0.1:8080說,我無法連接到我的項目。我在流浪漢身上做了什麼錯誤?Vagrant本地主機問題
這是我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
是否安裝Apache的?拋出的錯誤是什麼? –