Sử dụng Vagrant, không thể truy cập máy chủ ảo apache từ trình duyệt web của hệ điều hành máy chủ
Tôi đã cài đặt Ubuntu Server 16.04.1 Xenial Xerus (32-bit) trong Virtualbox với Vagrant trên máy chủ Windows 7. Nội dung của Vagrantfile là Vagrant.configure("2") do |config| config.vm.box = "boxcutter/ubuntu1604-i386" config.vm.network "forwarded_port", guest: 80, host: 8080 config.vm.hostname = "vagrant.templavoilaplus" config.vm.network "private_network", ip: "192.168.33.148" config.vm.synced_folder "E:/xampp/htdocs/github/templavoilaplus/", "/var/www/templavoilaplus/public_html" config.vm.provision "shell", path: "setup_for_ubuntu_box.sh" …