我正在使用Vagrant为我运行服务器。所以我按照this教程,当我打开浏览器去检查时。我得到Oops! Google Chrome could not connect to 127.0.0.1
。我也试过localhost
和我的IP地址。随着不同端口的混合。奇怪的是我做的时候
curl 'localhost'
或curl 'http://127.0.0.1:80'
我
<html><body><h1>It works!</h1>
<p>This is the default web page for this server.</p>
<p>The web server software is running but no content has been added, yet.</p>
</body></html>
我知道这是正常的,但我只能在命令行上显示。有任何想法吗?
答案 0 :(得分:1)
您必须在Vagrantfile中设置端口转发。见https://docs.vagrantup.com/v2/networking/forwarded_ports.html
示例:强>
Vagrant.configure("2") do |config|
config.vm.network "forwarded_port", guest: 80, host: 8080
end
答案 1 :(得分:0)
使用Vagrant遇到问题并获得一些帮助。 这是我的帖子以及我如何使它发挥作用: