tpsio/testansible/web.yml
“cameron.desrayaud” 928fda2aa8 ajout yml
2022-01-24 14:24:14 +01:00

28 lines
503 B
YAML

---
- hosts: web
vars:
http_port: 80
max_clients: 200
remote_user: root
tasks:
- name: install apache2
apt :
name: apache2
state: present
- name: install php
apt :
name: php
state: present
- name: install php-mbstring
apt :
name: php-mbstring
state: present
- name: apache is running
service:
name: apache2
state: started
- name: copie fichier index.html
copy:
src: index.html
dest: /var/www/html/