This repository has been archived on 2025-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
siotp/bts_annee_2/sisr2/ansible/web.yml
2024-10-11 11:38:18 +02:00

22 lines
415 B
YAML

# playbook.yml
---
- hosts: web
tasks:
- name: 1. installe Apache
apt:
name: apache2
state: present
- name: 2. installe PHP pour Apache
apt:
name: php
state: present
- name: 3. installe php-mbstring
apt:
name: php-mbstring
state: present
- name: 4. installe index.html
copy:
src: index.html
dest: /var/www/html/index.html
mode: 0664