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 |