2017-09-16 78 views
-1

我是新來的流浪者和虛擬現實 - 對不起。我無法訪問網站的流浪者

我Vagrantfile:

Vagrant.configure("2") do |config| 
config.vm.box = "ubuntu/trusty64" 
config.vm.network "private_network", ip: "192.168.33.10" 
config.vm.synced_folder "/home/user/test/public", "/var/www/" 
end 

流浪漢起來,流浪漢SSH是罰款,但192.168.33.10並不在我的瀏覽器中打開。

我該怎麼辦?

+1

你有你的虛擬機上運行的Web服務器(nginx的,阿帕奇)? –

+0

是的,我安裝了apache2 – mak

+1

你有另一個流浪機嗎?你在流浪機器上檢查Apache日誌嗎?當你做telnet 192.168.33.10 80'時會發生什麼? – codescope

回答

0

捲曲本地主機

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> 
<html><head> 
<title>404 Not Found</title> 
</head><body> 
<h1>Not Found</h1> 
<p>The requested URL/was not found on this server.</p> 
<hr> 
<address>Apache/2.4.7 (Ubuntu) Server at localhost Port 80</address> 
</body></html> 
+0

是從VM運行的'curl localhost'?如果是這樣,這意味着您的Web服務器無法顯示 –