vn-ansible/playbooks/site.yml

15 lines
229 B
YAML
Raw Normal View History

2023-07-20 19:38:48 +00:00
---
- name: Install WordPress, MySQL, Nginx, and PHP-FPM
hosts: all
remote_user: root
# remote_user: user
# become: yes
# become_method: sudo
roles:
- common
- mysql
- nginx
- php-fpm
- wordpress