17 lines
303 B
YAML
17 lines
303 B
YAML
---
|
|
- hosts: all
|
|
tasks:
|
|
- name: install apache2
|
|
apt:
|
|
name:
|
|
- apache2
|
|
- php
|
|
- php-mbstring
|
|
update_cache: yes
|
|
state: present
|
|
- name: insert index.html
|
|
copy:
|
|
src: index.html
|
|
dest: /var/www/html/
|
|
mode: 0664
|