forked from roots/trellis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.yml
23 lines (22 loc) · 838 Bytes
/
dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
- name: "WordPress Server: Install LEMP Stack with PHP 7.0 and MariaDB MySQL"
hosts: web:&development
become: yes
remote_user: vagrant
roles:
- { role: common, tags: [common] }
- { role: fail2ban, tags: [fail2ban] }
- { role: ferm, tags: [ferm] }
- { role: ntp }
- { role: sshd, tags: [sshd] }
- { role: mariadb, tags: [mariadb] }
- { role: ssmtp, tags: [ssmtp mail] }
- { role: mailhog, tags: [mailhog mail] }
- { role: php, tags: [php] }
- { role: memcached, tags: [memcached] }
- { role: nginx, tags: [nginx] }
- { role: logrotate, tags: [logrotate] }
- { role: composer, tags: [composer] }
- { role: wp-cli, tags: [wp-cli] }
- { role: wordpress-setup, tags: [wordpress, wordpress-setup] }
- { role: wordpress-install, tags: [wordpress, wordpress-install] }