mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-10 07:06:38 +07:00
13 lines
161 B
YAML
13 lines
161 B
YAML
- hosts: webservers
|
|
become: yes
|
|
roles:
|
|
- common
|
|
- apache2
|
|
tags: web
|
|
|
|
- hosts: proxy
|
|
become: yes
|
|
roles:
|
|
- common
|
|
- nginx
|
|
tags: proxy |