ansible-wordpress-host-init/setup_server.yml
2023-03-27 18:24:16 +02:00

14 lines
281 B
YAML

---
- hosts: all
vars_files:
- /vars/external.yml
become: yes
become_user: root
gather_facts: true
roles:
- role: update-packages
- role: install-nginx
- role: configure-nginx
- role: install-php
- role: configure-php
- role: install-wordpress