18 lines
360 B
YAML
18 lines
360 B
YAML
---
|
|
- hosts: web_proxy
|
|
roles:
|
|
- nginx
|
|
tags: web-proxy
|
|
|
|
- hosts: mail_proxy
|
|
roles:
|
|
- haproxy
|
|
tags: mail-proxy
|
|
|
|
- hosts: ddclient
|
|
roles:
|
|
- { role: docker, when: ddclient_container_engine == "docker" }
|
|
- { role: podman, when: ddclient_container_engine == "podman" }
|
|
- { role: ddclient, ddclient_containerized: yes }
|
|
tags: ddclient
|