mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-24 18:15:28 +07:00
22 lines
252 B
YAML
22 lines
252 B
YAML
|
- hosts: webservers
|
||
|
become: yes
|
||
|
roles:
|
||
|
- common
|
||
|
- apache2
|
||
|
tags:
|
||
|
web
|
||
|
|
||
|
- hosts: proxy
|
||
|
become: yes
|
||
|
roles:
|
||
|
- common
|
||
|
- nginx
|
||
|
tags:
|
||
|
proxy
|
||
|
|
||
|
- hosts: database
|
||
|
become: yes
|
||
|
roles:
|
||
|
- common
|
||
|
- mysql
|
||
|
tags: database
|