CMDB-Server/ec2-user/ansible/step3_change_web_page.yml

21 lines
353 B
YAML

---
- name: install httpd
hosts: web
become: true
gather_facts: false
tasks:
- name: Copy web page
copy:
src: ./index.html
dest: /var/www/html/
owner: apache
group: apache
mode: '0755'
- name: restart apache
systemd:
name: httpd
state: restarted
enabled: yes