配置和重启apache服务器
这里可以使用apache2_module,所以你仅需在Playbook里添加以下两个task:
- name: Enabled apache2 mod_rewrite
apache2_module:
name: rewrite
state: present
- name: Restart apache2 service
service:
name: apache2
state: restarted
这样,一个基本完整的用apache部署静态页面的ansible playbook就写完了。还是执行:
ansible-playbook -i hosts setup_static_page.yml
结束后,在虚拟机的宿主机(例如Mac)浏览器中输入:
http://192.168.33.10/static_page
你就可以看一个简单的页面(粉红色的Ansible图标)。