나는 vagrant guest machine 내부에서 apache2를 실행하고 있습니다.
아래는 내 방랑자 파일입니다.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/lunar64"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
config.vm.provision "ansible_local" do |ansible|
ansible.playbook = "provisioning/playbook.yml"
end
end
내 플레이북은 provisioning/playbook.yml
아래에 있습니다 -
---
- hosts: all
become: true
tasks:
- name: make sure we can connect
ping:
- name: update the apt cache
apt: update_cache=yes cache_valid_time=3600
- name: ensure apache2 is installed and up to date
apt: name=apache2 state=latest
- name: write the apache config file
copy: src=templates/apache2/000-default.conf dest=/etc/apache2/sites-available/000-default.conf
notify:
- restart apache2
- name: apache is running (and enable it at boot)
service: name=apache2 state=started enabled=yes
handlers:
- name: restart apache2
service: name=apache2 state=restarted
여기는 provisioning/templates/apache2/000-default.conf
-
<VirtualHost *:80>
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
명령이 제대로 실행 vagrant up
되고 vagrant provision
있습니다. 방랑 게스트 OS에 로그인하면 정상적으로 작동합니다 vagrant ssh
.curl http://0.0.0.0
그러나 게스트 컴퓨터 IP를 사용하여 호스트 OS에서 액세스하려고 하면 실패합니다.
Vagrant Machine 내에서 서비스에 올바르게 액세스하려면 어떻게 해야 합니까?