流浪汉服务器没有出现?

时间:2014-03-13 02:03:40

标签: php mysql apache curl vagrant

我正在使用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>

我知道这是正常的,但我只能在命令行上显示。有任何想法吗?

2 个答案:

答案 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遇到问题并获得一些帮助。 这是我的帖子以及我如何使它发挥作用:

Setting up Vagrant with PuPHET failure