90DaysOfDevOps/2022/zh_tw/Days/Configmgmt/ansible-scenario5/playbook5.yml

17 lines
276 B
YAML
Raw Normal View History

2022-10-23 23:38:19 +07:00
- hosts: webservers
become: yes
vars:
http_port: 8000
https_port: 4443
html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 66!"
roles:
- common
- apache2
tags: web
- hosts: proxy
become: yes
roles:
- common
- nginx
tags: proxy